summaryrefslogtreecommitdiff
path: root/src/include/port/darwin/sem.h
blob: 9e3e28d646a618dbfe702fddb161a73f1c6de936 (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
69
70
71
72
73
74
75
/*-------------------------------------------------------------------------
 *
 * sem.h
 *	  System V Semaphore Emulation
 *
 * Copyright (c) 1999, repas AEG Automation GmbH
 *
 *
 * IDENTIFICATION
 *       $Header: /cvsroot/pgsql/src/include/port/darwin/Attic/sem.h,v 1.1 2000/12/11 00:49:53 tgl Exp $
 *
 *-------------------------------------------------------------------------
 */

#ifndef _SYS_SEM_H
#define _SYS_SEM_H

/* #define DEBUG_IPC here if you want to see the shim in action */

#include <sys/ipc.h>

#ifdef __cplusplus
extern		"C"
{
#endif

/*
 *	Semctl Command Definitions.
 */

#define GETNCNT 3				/* get semncnt */
#define GETPID	4				/* get sempid */
#define GETVAL	5				/* get semval */
#define GETALL	6				/* get all semval's */
#define GETZCNT 7				/* get semzcnt */
#define SETVAL	8				/* set semval */
#define SETALL	9				/* set all semval's */

#ifndef ushort_t
#define ushort_t unsigned int
#endif

/*
 *	There is one semaphore structure for each semaphore in the system.
 */

	struct sem
	{
		ushort_t	semval;		/* semaphore text map address	*/
		pid_t		sempid;		/* pid of last operation	*/
		ushort_t	semncnt;	/* # awaiting semval > cval */
		ushort_t	semzcnt;	/* # awaiting semval = 0	*/
	};

/*
 * User semaphore template for semop system calls.
 */

	struct sembuf
	{
		ushort_t	sem_num;	/* semaphore #			*/
		short		sem_op;		/* semaphore operation		*/
		short		sem_flg;	/* operation flags		*/
	};

	extern int	semctl(int semid, int semnum, int cmd, /* ... */ union semun arg);
	extern int	semget(key_t key, int nsems, int semflg);
	extern int	semop(int semid, struct sembuf * sops, size_t nsops);

#ifdef __cplusplus
}

#endif

#endif	 /* _SYS_SEM_H */