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
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 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/>.
|
|
|
|
|
2017-04-08 06:54:49 +00:00
|
|
|
#ifndef BOINC_SYNCH_H
|
|
|
|
#define BOINC_SYNCH_H
|
2005-01-20 23:22:22 +00:00
|
|
|
|
2002-05-24 04:29:10 +00:00
|
|
|
#include <sys/sem.h>
|
|
|
|
|
|
|
|
extern int create_semaphore(key_t);
|
|
|
|
extern int destroy_semaphore(key_t);
|
|
|
|
extern int lock_semaphore(key_t);
|
|
|
|
extern int unlock_semaphore(key_t);
|
2004-03-25 22:24:33 +00:00
|
|
|
extern int get_key(char* path, int id, key_t&);
|
2008-08-06 18:36:30 +00:00
|
|
|
|
|
|
|
#endif
|