~ubuntu-branches/ubuntu/dapper/fpc/dapper

« back to all changes in this revision

Viewing changes to packages/base/libc/bmsqh.inc

  • Committer: Bazaar Package Importer
  • Author(s): Carlos Laviola
  • Date: 2004-08-12 16:29:37 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040812162937-moo8ulvysp1ln771
Tags: 1.9.4-5
fp-compiler: needs ld, adding dependency on binutils.  (Closes: #265265)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
const
 
3
   MSG_NOERROR = $1000;
 
4
   MSG_EXCEPT = $2000;
 
5
 
 
6
type
 
7
   Pmsgqnum_t = ^msgqnum_t;
 
8
   msgqnum_t = dword;
 
9
 
 
10
   Pmsglen_t = ^msglen_t;
 
11
   msglen_t = dword;
 
12
   Pmsqid_ds = ^msqid_ds;
 
13
   msqid_ds = record
 
14
        msg_perm : ipc_perm;
 
15
        msg_stime : __time_t;
 
16
        __unused1 : dword;
 
17
        msg_rtime : __time_t;
 
18
        __unused2 : dword;
 
19
        msg_ctime : __time_t;
 
20
        __unused3 : dword;
 
21
        __msg_cbytes : dword;
 
22
        msg_qnum : msgqnum_t;
 
23
        msg_qbytes : msglen_t;
 
24
        msg_lspid : __pid_t;
 
25
        msg_lrpid : __pid_t;
 
26
        __unused4 : dword;
 
27
        __unused5 : dword;
 
28
     end;
 
29
 
 
30
 
 
31
const
 
32
   MSG_STAT = 11;
 
33
   MSG_INFO = 12;
 
34
 
 
35
type
 
36
   Pmsginfo = ^msginfo;
 
37
   msginfo = record
 
38
        msgpool : longint;
 
39
        msgmap : longint;
 
40
        msgmax : longint;
 
41
        msgmnb : longint;
 
42
        msgmni : longint;
 
43
        msgssz : longint;
 
44
        msgtql : longint;
 
45
        msgseg : word;
 
46
     end;
 
47
 
 
48
{ ---------------------------------------------------------------------
 
49
    Borland compatibility types
 
50
  ---------------------------------------------------------------------}
 
51
 
 
52
Type  
 
53
  TMsgQueueIdDesc = msqid_ds;
 
54
  PMsgQueueIdDesc = ^TMsgQueueIdDesc;