2003-06-11 23:36:48 +00:00
|
|
|
// The contents of this file are subject to the BOINC Public License
|
2002-09-26 18:11:06 +00:00
|
|
|
// Version 1.0 (the "License"); you may not use this file except in
|
|
|
|
// compliance with the License. You may obtain a copy of the License at
|
2003-06-11 23:36:48 +00:00
|
|
|
// http://boinc.berkeley.edu/license_1.0.txt
|
2004-07-13 13:54:09 +00:00
|
|
|
//
|
2002-09-26 18:11:06 +00:00
|
|
|
// Software distributed under the License is distributed on an "AS IS"
|
|
|
|
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing rights and limitations
|
2004-07-13 13:54:09 +00:00
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
2002-09-26 18:11:06 +00:00
|
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
2004-07-13 13:54:09 +00:00
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
2002-09-26 18:11:06 +00:00
|
|
|
// Contributor(s):
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
// interfaces for accessing sempahores
|
|
|
|
|
2004-07-13 13:54:09 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
2002-05-24 04:29:10 +00:00
|
|
|
|
2004-03-25 22:24:33 +00:00
|
|
|
#include "error_numbers.h"
|
2002-05-24 04:29:10 +00:00
|
|
|
#include "synch.h"
|
|
|
|
|
2004-07-03 21:38:15 +00:00
|
|
|
#ifdef _USING_FCGI_
|
|
|
|
#include "fcgi_stdio.h"
|
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
static volatile const char __attribute__((unused)) *BOINCrcsid="$Id$";
|
|
|
|
#else
|
|
|
|
static volatile const char *BOINCrcsid="$Id$";
|
|
|
|
#endif
|