summaryrefslogtreecommitdiff
path: root/apps/JAWS/clients/WebSTONE/src/nsapi-includes/base/sem.h
blob: c6ea65b834b525ad4e2b567f8368148c03281d4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
 * Copyright (c) 1994, 1995.  Netscape Communications Corporation.  All
 * rights reserved.
 * 
 * Use of this software is governed by the terms of the license agreement for
 * the Netscape Communications or Netscape Comemrce Server between the
 * parties.
 */


/* ------------------------------------------------------------------------ */


/*
 * sem.h: Attempt to provide multi-process semaphores across platforms
 * 
 * Rob McCool
 */


#ifndef SEM_H
#define SEM_H

#include "systems.h"


/* All of the implementations currently use int as the semaphore type */
#ifdef SEM_WIN32
typedef HANDLE SEMAPHORE;
#define SEM_ERROR NULL
/* That oughta hold them (I hope) */
#define SEM_MAXVALUE 32767

#else /* ! SEM_WIN32 */
typedef int SEMAPHORE;
#define SEM_ERROR -1
#endif /* SEM_WIN32 */

/*
 * sem_init creates a semaphore using the given name and unique 
 * identification number. filename should be a file accessible to the 
 * process. Returns SEM_ERROR on error.
 */

SEMAPHORE sem_init(char *name, int number);

/*
 * sem_terminate de-allocates the given semaphore.
 */

void sem_terminate(SEMAPHORE id);

/*
 * sem_grab attempts to gain exclusive access to the given semaphore. If
 * it can't get it, the caller will block. Returns -1 on error.
 */

int sem_grab(SEMAPHORE id);

/*
 * sem_release releases this process's exclusive control over the given
 * semaphore. Returns -1 on error.
 */

int sem_release(SEMAPHORE id);


#endif