2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-01-20 23:22:22 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2019-01-12 21:43:48 +00:00
|
|
|
// Copyright (C) 2019 University of California
|
2005-01-20 23:22:22 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC 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 3 of the License, or (at your option) any later version.
|
2005-01-20 23:22:22 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-01-20 23:22:22 +00:00
|
|
|
// 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.
|
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2005-01-20 23:22:22 +00:00
|
|
|
|
2002-05-24 04:29:10 +00:00
|
|
|
// -c create semaphore
|
|
|
|
// -d destroy semaphore
|
|
|
|
// -l lock semaphore, sleep 10 secs, unlock
|
|
|
|
|
2005-11-21 18:34:44 +00:00
|
|
|
#include "config.h"
|
2002-05-24 04:29:10 +00:00
|
|
|
#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
|
|
|
}
|