summaryrefslogtreecommitdiff
path: root/packages/libc/src/bsemh.inc
blob: 4cf935a47090166715f086e94dd27d12cbe6dc91 (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

const
   SEM_UNDO = $1000;
   _GETPID = 11; // renamed, conflict with getpid call.
   GETVAL = 12;
   GETALL = 13;
   GETNCNT = 14;
   GETZCNT = 15;
   SETVAL = 16;
   SETALL = 17;

type
   Psemid_ds = ^semid_ds;
   semid_ds = record
        sem_perm : ipc_perm;
        sem_otime : __time_t;
        __unused1 : dword;
        sem_ctime : __time_t;
        __unused2 : dword;
        sem_nsems : dword;
        __unused3 : dword;
        __unused4 : dword;
     end;


const
   SEM_STAT = 18;
   SEM_INFO = 19;

type
   Pseminfo = ^seminfo;
   seminfo = record
        semmap : longint;
        semmni : longint;
        semmns : longint;
        semmnu : longint;
        semmsl : longint;
        semopm : longint;
        semume : longint;
        semusz : longint;
        semvmx : longint;
        semaem : longint;
     end;


{ ---------------------------------------------------------------------
    Borland compatibility types
  ---------------------------------------------------------------------}

Type
  TSemaphoreIdDescriptor = semid_ds;
  PSemaphoreIdDescriptor = ^TSemaphoreIdDescriptor;

  TSemaphoreInfo = seminfo;
  PSemaphoreInfo = ^TSemaphoreInfo;