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
|
2004-07-13 13:54:09 +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.
|
2004-07-13 13:54:09 +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.
|
2002-09-26 18:11:06 +00:00
|
|
|
//
|
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/>.
|
2002-09-26 18:11:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
// interfaces for accessing sempahores
|
|
|
|
|
2012-08-11 04:52:53 +00:00
|
|
|
#ifdef HAVE_SYS_SEM_H
|
2012-08-01 20:04:05 +00:00
|
|
|
|
2005-11-21 18:34:44 +00:00
|
|
|
#include "config.h"
|
2004-07-13 13:54:09 +00:00
|
|
|
#include <cstdio>
|
2009-02-26 00:23:23 +00:00
|
|
|
#include <cstdlib>
|
2004-07-13 13:54:09 +00:00
|
|
|
#include <cstring>
|
2002-05-24 04:29:10 +00:00
|
|
|
|
2009-02-26 00:23:23 +00:00
|
|
|
using std::memset;
|
|
|
|
|
2004-07-03 21:38:15 +00:00
|
|
|
#ifdef _USING_FCGI_
|
2008-09-09 19:10:42 +00:00
|
|
|
#include "boinc_fcgi.h"
|
2004-07-03 21:38:15 +00:00
|
|
|
#endif
|
|
|
|
|
2012-08-01 20:04:05 +00:00
|
|
|
#include "error_numbers.h"
|
|
|
|
|
2012-08-11 05:47:18 +00:00
|
|
|
#include "synch.h"
|
|
|
|
|
2004-03-26 18:32:57 +00:00
|
|
|
union SEMUN {
|
2002-05-24 04:29:10 +00:00
|
|
|
int val;
|
|
|
|
struct semid_ds *buf;
|
|
|
|
unsigned short int *arra;
|
|
|
|
struct seminfo *__buf;
|
|
|
|
};
|
|
|
|
|
|
|
|
int create_semaphore(key_t key){
|
|
|
|
int id, retval;
|
2004-03-26 18:32:57 +00:00
|
|
|
SEMUN s;
|
2002-05-24 04:29:10 +00:00
|
|
|
|
|
|
|
id = semget(key, 1, IPC_CREAT|IPC_EXCL|0777);
|
|
|
|
if (id < 0) {
|
2004-03-25 22:24:33 +00:00
|
|
|
return ERR_SEMGET;
|
2002-05-24 04:29:10 +00:00
|
|
|
}
|
|
|
|
memset(&s, 0, sizeof(s));
|
|
|
|
s.val = 1;
|
|
|
|
retval = semctl(id, 0, SETVAL, s);
|
|
|
|
if (retval) {
|
2004-03-25 22:24:33 +00:00
|
|
|
return ERR_SEMCTL;
|
2002-05-24 04:29:10 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int destroy_semaphore(key_t key){
|
|
|
|
int id, retval;
|
|
|
|
id = semget(key, 0, 0);
|
|
|
|
if (id < 0) {
|
2004-03-25 22:24:33 +00:00
|
|
|
return ERR_SEMGET;
|
2002-05-24 04:29:10 +00:00
|
|
|
}
|
|
|
|
retval = semctl(id, 1, IPC_RMID, 0);
|
|
|
|
if (retval) {
|
2004-03-25 22:24:33 +00:00
|
|
|
return ERR_SEMCTL;
|
2002-05-24 04:29:10 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int lock_semaphore(key_t key) {
|
|
|
|
struct sembuf s;
|
|
|
|
int id, retval;
|
|
|
|
|
|
|
|
id = semget(key, 0, 0);
|
|
|
|
if (id < 0) {
|
2004-03-25 22:24:33 +00:00
|
|
|
return ERR_SEMGET;
|
2002-05-24 04:29:10 +00:00
|
|
|
}
|
|
|
|
s.sem_num = 0;
|
|
|
|
s.sem_op = -1;
|
|
|
|
s.sem_flg = SEM_UNDO;
|
|
|
|
retval = semop(id, &s, 1);
|
|
|
|
if (retval) {
|
2004-03-25 22:24:33 +00:00
|
|
|
return ERR_SEMOP;
|
2002-05-24 04:29:10 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int unlock_semaphore(key_t key) {
|
|
|
|
struct sembuf s;
|
|
|
|
int id, retval;
|
|
|
|
|
|
|
|
id = semget(key, 0, 0);
|
|
|
|
if (id < 0) {
|
2004-03-25 22:24:33 +00:00
|
|
|
return ERR_SEMGET;
|
2002-05-24 04:29:10 +00:00
|
|
|
}
|
|
|
|
s.sem_num = 0;
|
|
|
|
s.sem_op = 1;
|
|
|
|
s.sem_flg = SEM_UNDO;
|
|
|
|
retval = semop(id, &s, 1);
|
|
|
|
if (retval) {
|
2004-03-25 22:24:33 +00:00
|
|
|
return ERR_SEMOP;
|
2002-05-24 04:29:10 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-03-25 22:24:33 +00:00
|
|
|
int get_key(char* path, int id, key_t& key) {
|
|
|
|
key = ftok(path, id);
|
|
|
|
if (key == (key_t)-1) return ERR_FTOK;
|
|
|
|
return 0;
|
|
|
|
}
|
2004-12-08 00:40:19 +00:00
|
|
|
|
2012-08-11 04:52:53 +00:00
|
|
|
#endif //HAVE_SYS_SEM_H
|