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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
|
{
This file is part of the Free Pascal run time library.
Copyright (c) 2001 by Free Pascal development team
This file implements all the base types and limits required
for a minimal POSIX compliant subset required to port the compiler
to a new OS.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{***********************************************************************}
{ POSIX TYPE DEFINITIONS }
{***********************************************************************}
{ Introduced defines
- 64bitfs (should be on if libc switches to a 64-bit system.
All three tested systems (PPC,Alpha,2x i386) gave the same POSIX limits,
and all three 32-bit systems returned completely identical types too
(everything 32-bit except dev_t, which is assumed to be a result of devfs
introduction)
}
{$I ctypes.inc}
{$packrecords c}
Type
dev_t = culong; { used for device numbers }
TDev = dev_t;
pDev = ^dev_t;
kDev_t = cushort; // Linux has two different device conventions
TkDev = KDev_t; // kernel and glibc. This is kernel.
pkDev = ^kdev_t;
gid_t = cuint32; { used for group IDs }
TGid = gid_t;
pGid = ^gid_t;
TIOCtlRequest = cInt;
ino_t = clong; { used for file serial numbers }
TIno = ino_t;
pIno = ^ino_t;
mode_t = cuint32; { used for file attributes }
TMode = mode_t;
pMode = ^mode_t;
nlink_t = cuint32; { used for link counts }
TnLink = nlink_t;
pnLink = ^nlink_t;
{$ifdef cpu64}
off_t = cint64; { used for file sizes }
{$else}
{$ifdef 64BitFS}
off_t = cint64;
{$else}
off_t = cint;
{$endif}
{$endif}
TOff = off_t;
pOff = ^off_t;
pid_t = cint32; { used as process identifier }
TPid = pid_t;
pPid = ^pid_t;
{$ifdef cpu64}
size_t = cuint64; { as definied in the C standard}
ssize_t = cint64; { used by function for returning number of bytes }
clock_t = cuint64;
time_t = cint64; { used for returning the time }
{$else}
size_t = cuint32; { as definied in the C standard}
ssize_t = cint32; { used by function for returning number of bytes }
clock_t = culong;
time_t = clong; { used for returning the time }
{$endif}
wint_t = cint32;
TSize = size_t;
pSize = ^size_t;
psize_t = pSize;
TSSize = ssize_t;
pSSize = ^ssize_t;
TClock = clock_t;
pClock = ^clock_t;
// TTime = time_t; // Not allowed in system unit, -> unixtype
pTime = ^time_t;
ptime_t = ^time_t;
clockid_t = cint;
caddr_t = ^char;
uint32_t = cuint32;
int32_t = cint32;
caddr32_t = uint32_t;
daddr32_t = int32_t;
off32_t = int32_t;
ino32_t = uint32_t;
blkcnt32_t = int32_t;
fsblkcnt32_t = uint32_t;
fsfilcnt32_t = uint32_t;
id32_t = int32_t;
major32_t = uint32_t;
minor32_t = uint32_t;
key32_t = int32_t;
mode32_t = uint32_t;
uid32_t = int32_t;
gid32_t = int32_t;
nlink32_t = uint32_t;
dev32_t = uint32_t;
pid32_t = int32_t;
size32_t = uint32_t;
ssize32_t = int32_t;
time32_t = int32_t;
uint16_t = cuint16;
upad64_t = qword;
uintptr_t = ^cuint;
uint_t = cuint;
{$ifdef cpu64}
wchar_t = cint;
{$else cpu64}
wchar_t = clong;
{$endif cpu64}
pwchar_t = ^wchar_t;
uid_t = cuint32; { used for user ID type }
TUid = uid_t;
pUid = ^uid_t;
socklen_t= cuint32;
TSockLen = socklen_t;
pSockLen = ^socklen_t;
timeval = record
tv_sec,
tv_usec:clong;
end;
ptimeval = ^timeval;
TTimeVal = timeval;
timespec = record
tv_sec : time_t;
tv_nsec : clong;
end;
ptimespec = ^timespec;
TTimeSpec = timespec;
{$ifdef cpu64}
fsblkcnt_t = culonglong;
{$else}
fsblkcnt_t = culong;
{$endif}
{ actually stavfs, statfs is deprecated on Solaris }
TStatfs = packed record
bsize, { fundamental file system block size }
frsize : culong; { fragment size }
blocks, { Data blocks in system }
bfree, { free blocks in system }
bavail, { Available free blocks to non-root users }
files, { File nodes in system }
ffree, { Free file nodes in system }
favail : fsblkcnt_t; { free nodes avail to non-superuser}
fsid : clong; { File system ID }
basetype: array [0..15] of char; { null-terminated fs type name }
flag : culong; { bit-mask of flags }
namelen : culong; { Maximum name length in system }
fstr : array[0..31] of char; { fs-specific string }
{$ifndef cpu64}
spare : array[0..15] of clong; { reserved for future use }
{$endif}
end;
PStatFS=^TStatFS;
mbstate_t = record
{$ifdef cpu64}
__filler: array[0..3] of clong;
{$else cpu64}
__filler: array[0..5] of cint;
{$endif cpu64}
end;
pmbstate_t = ^mbstate_t;
clock32_t = int32_t;
timeval32 = record
{ seconds }
tv_sec : time32_t;
{ and microseconds }
tv_usec : int32_t;
end;
timespec32 = record
{ seconds }
tv_sec : time32_t;
{ and nanoseconds }
tv_nsec : int32_t;
end;
timespec32_t = timespec32;
itimerspec32 = record
it_interval : timespec32;
it_value : timespec32;
end;
itimerspec32_t = itimerspec32;
const
{ System limits, POSIX value in parentheses, used for buffer and stack allocation }
{ took idefix' values}
ARG_MAX = 131072; {4096} { Maximum number of argument size }
NAME_MAX = 255; {14} { Maximum number of bytes in filename }
PATH_MAX = 4095; {255} { Maximum number of bytes in pathname }
SYS_NMLN = 65;
SIG_MAXSIG = 128; // highest signal version
{ For getting/setting priority }
Prio_Process = 0;
Prio_PGrp = 1;
Prio_User = 2;
type
pthread_t = cuint;
pthread_attr_t = record
__pthread_attrp : pointer;
end;
pthread_mutexattr_t = record
__pthread_mutexattrp : pointer;
end;
pthread_cond_t = record
__pthread_cond_flags : record
__pthread_cond_flag : array[0..3] of byte;
__pthread_cond_type : uint16_t;
__pthread_cond_magic : uint16_t;
end;
__pthread_cond_data : upad64_t;
end;
pthread_condattr_t = record
__pthread_condattrp : pointer;
end;
pthread_key_t = cuint;
pthread_mutex_t = record
__pthread_mutex_flags : record
__pthread_mutex_flag1 : word;
__pthread_mutex_flag2 : byte;
__pthread_mutex_ceiling : byte;
__pthread_mutex_type : word;
__pthread_mutex_magic : word;
end;
__pthread_mutex_lock : record
case longint of
0 : ( __pthread_mutex_lock64 : record
__pthread_mutex_pad : array[0..7] of byte;
end );
1 : ( __pthread_mutex_lock32 : record
__pthread_ownerpid : dword;
__pthread_lockword : dword;
end );
2 : ( __pthread_mutex_owner64 : qword );
end;
__pthread_mutex_data : qword;
end;
pthread_rwlock_t = record
__pthread_rwlock_readers : int32_t;
__pthread_rwlock_type : uint16_t;
__pthread_rwlock_magic : uint16_t;
__pthread_rwlock_mutex : pthread_mutex_t;
__pthread_rwlock_readercv : pthread_cond_t;
__pthread_rwlock_writercv : pthread_cond_t;
end;
sem_t = record
sem_count : uint32_t;
sem_type : uint16_t;
sem_magic : uint16_t;
sem_pad1 : array[0..2] of upad64_t;
sem_pad2 : array[0..1] of upad64_t;
end;
|