2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
|
|
|
//
|
|
|
|
// This is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation;
|
|
|
|
// either version 2.1 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This software is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// To view the GNU Lesser General Public License visit
|
|
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
|
|
// or write to the Free Software Foundation, Inc.,
|
|
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
2002-05-24 04:29:10 +00:00
|
|
|
// -c create semaphore
|
|
|
|
// -d destroy semaphore
|
|
|
|
// -l lock semaphore, sleep 10 secs, unlock
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "synch.h"
|
|
|
|
|
|
|
|
#define KEY 0xdeadbeef
|
|
|
|
|
2002-10-04 20:26:23 +00:00
|
|
|
int main(int argc, char** argv) {
|
2002-05-24 04:29:10 +00:00
|
|
|
if (!strcmp(argv[1], "-c")) {
|
|
|
|
create_semaphore(KEY);
|
|
|
|
} else if (!strcmp(argv[1], "-d")) {
|
|
|
|
destroy_semaphore(KEY);
|
|
|
|
} else if (!strcmp(argv[1], "-l")) {
|
|
|
|
lock_semaphore(KEY);
|
|
|
|
sleep(10);
|
|
|
|
unlock_semaphore(KEY);
|
|
|
|
}
|
2002-10-04 20:26:23 +00:00
|
|
|
|
|
|
|
return 0;
|
2002-05-24 04:29:10 +00:00
|
|
|
}
|
2004-12-08 00:40:19 +00:00
|
|
|
|
2005-01-02 18:29:53 +00:00
|
|
|
const char *BOINC_RCSID_7eba26a197 = "$Id$";
|