1 ------------------------------------------------------------------------------
3 -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS --
5 -- S Y S T E M . O S _ I N T E R F A C E --
9 -- Copyright (C) 1991-1994, Florida State University --
10 -- Copyright (C) 1995-2004, Free Software Foundation, Inc. --
12 -- GNARL is free software; you can redistribute it and/or modify it under --
13 -- terms of the GNU General Public License as published by the Free Soft- --
14 -- ware Foundation; either version 2, or (at your option) any later ver- --
15 -- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
16 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
17 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
18 -- for more details. You should have received a copy of the GNU General --
19 -- Public License distributed with GNARL; see file COPYING. If not, write --
20 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
21 -- MA 02111-1307, USA. --
23 -- As a special exception, if other files instantiate generics from this --
24 -- unit, or you link this unit with other files to produce an executable, --
25 -- this unit does not by itself cause the resulting executable to be --
26 -- covered by the GNU General Public License. This exception does not --
27 -- however invalidate any other reasons why the executable file might be --
28 -- covered by the GNU Public License. --
30 -- GNARL was developed by the GNARL team at Florida State University. --
31 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
33 ------------------------------------------------------------------------------
35 -- This is a AIX (FSU THREADS) version of this package
37 -- This package encapsulates all direct interfaces to OS services
38 -- that are needed by children of System.
40 -- PLEASE DO NOT add any with-clauses to this package or remove the pragma
41 -- Preelaborate. This package is designed to be a bottom-level (leaf) package.
44 with Unchecked_Conversion
;
46 package System
.OS_Interface
is
48 -- pragma Elaborate_Body;
50 pragma Linker_Options
("-lgthreads");
51 pragma Linker_Options
("-lmalloc");
53 subtype int
is Interfaces
.C
.int
;
54 subtype short
is Interfaces
.C
.short
;
55 subtype long
is Interfaces
.C
.long
;
56 subtype unsigned
is Interfaces
.C
.unsigned
;
57 subtype unsigned_short
is Interfaces
.C
.unsigned_short
;
58 subtype unsigned_long
is Interfaces
.C
.unsigned_long
;
59 subtype unsigned_char
is Interfaces
.C
.unsigned_char
;
60 subtype plain_char
is Interfaces
.C
.plain_char
;
61 subtype size_t
is Interfaces
.C
.size_t
;
67 function errno
return int
;
68 pragma Import
(C
, errno
, "__get_errno");
70 EAGAIN
: constant := 11;
71 EINTR
: constant := 4;
72 EINVAL
: constant := 22;
73 ENOMEM
: constant := 12;
74 ETIMEDOUT
: constant := 78;
80 Max_Interrupt
: constant := 63;
81 type Signal
is new int
range 0 .. Max_Interrupt
;
82 for Signal
'Size use int
'Size;
84 SIGHUP
: constant := 1; -- hangup
85 SIGINT
: constant := 2; -- interrupt (rubout)
86 SIGQUIT
: constant := 3; -- quit (ASCD FS)
87 SIGILL
: constant := 4; -- illegal instruction (not reset)
88 SIGTRAP
: constant := 5; -- trace trap (not reset)
89 SIGIOT
: constant := 6; -- IOT instruction
90 SIGABRT
: constant := 6; -- used by abort, replace SIGIOT in the future
91 SIGEMT
: constant := 7; -- EMT instruction
92 SIGFPE
: constant := 8; -- floating point exception
93 SIGKILL
: constant := 9; -- kill (cannot be caught or ignored)
94 SIGBUS
: constant := 10; -- bus error
95 SIGSEGV
: constant := 11; -- segmentation violation
96 SIGSYS
: constant := 12; -- bad argument to system call
97 SIGPIPE
: constant := 13; -- write on a pipe with no one to read it
98 SIGALRM
: constant := 14; -- alarm clock
99 SIGTERM
: constant := 15; -- software termination signal from kill
100 SIGUSR1
: constant := 30; -- user defined signal 1
101 SIGUSR2
: constant := 31; -- user defined signal 2
102 SIGCLD
: constant := 20; -- alias for SIGCHLD
103 SIGCHLD
: constant := 20; -- child status change
104 SIGPWR
: constant := 29; -- power-fail restart
105 SIGWINCH
: constant := 28; -- window size change
106 SIGURG
: constant := 16; -- urgent condition on IO channel
107 SIGPOLL
: constant := 23; -- pollable event occurred
108 SIGIO
: constant := 23; -- I/O possible (Solaris SIGPOLL alias)
109 SIGSTOP
: constant := 17; -- stop (cannot be caught or ignored)
110 SIGTSTP
: constant := 18; -- user stop requested from tty
111 SIGCONT
: constant := 19; -- stopped process has been continued
112 SIGTTIN
: constant := 21; -- background tty read attempted
113 SIGTTOU
: constant := 22; -- background tty write attempted
114 SIGVTALRM
: constant := 34; -- virtual timer expired
115 SIGPROF
: constant := 32; -- profiling timer expired
116 SIGXCPU
: constant := 24; -- CPU time limit exceeded
117 SIGXFSZ
: constant := 25; -- filesize limit exceeded
118 SIGWAITING
: constant := 39; -- m:n scheduling
120 -- the following signals are AIX specific
121 SIGMSG
: constant := 27; -- input data is in the ring buffer
122 SIGDANGER
: constant := 33; -- system crash imminent
123 SIGMIGRATE
: constant := 35; -- migrate process
124 SIGPRE
: constant := 36; -- programming exception
125 SIGVIRT
: constant := 37; -- AIX virtual time alarm
126 SIGALRM1
: constant := 38; -- m:n condition variables
127 SIGKAP
: constant := 60; -- keep alive poll from native keyboard
128 SIGGRANT
: constant := SIGKAP
; -- monitor mode granted
129 SIGRETRACT
: constant := 61; -- monitor mode should be relinguished
130 SIGSOUND
: constant := 62; -- sound control has completed
131 SIGSAK
: constant := 63; -- secure attention key
133 SIGADAABORT
: constant := SIGABRT
;
135 type Signal_Set
is array (Natural range <>) of Signal
;
137 Unmasked
: constant Signal_Set
:=
138 (SIGTRAP
, SIGTTIN
, SIGTTOU
, SIGTSTP
, SIGPROF
);
139 Reserved
: constant Signal_Set
:=
140 (SIGKILL
, SIGSTOP
, SIGALRM
, SIGWAITING
);
142 type sigset_t
is private;
144 function sigaddset
(set
: access sigset_t
; sig
: Signal
) return int
;
145 pragma Import
(C
, sigaddset
, "sigaddset");
147 function sigdelset
(set
: access sigset_t
; sig
: Signal
) return int
;
148 pragma Import
(C
, sigdelset
, "sigdelset");
150 function sigfillset
(set
: access sigset_t
) return int
;
151 pragma Import
(C
, sigfillset
, "sigfillset");
153 function sigismember
(set
: access sigset_t
; sig
: Signal
) return int
;
154 pragma Import
(C
, sigismember
, "sigismember");
156 function sigemptyset
(set
: access sigset_t
) return int
;
157 pragma Import
(C
, sigemptyset
, "sigemptyset");
159 type struct_sigaction
is record
160 sa_handler
: System
.Address
;
164 pragma Convention
(C
, struct_sigaction
);
165 type struct_sigaction_ptr
is access all struct_sigaction
;
167 SA_SIGINFO
: constant := 16#
0100#
;
169 SIG_BLOCK
: constant := 0;
170 SIG_UNBLOCK
: constant := 1;
171 SIG_SETMASK
: constant := 2;
173 SIG_DFL
: constant := 0;
174 SIG_IGN
: constant := 1;
178 act
: struct_sigaction_ptr
;
179 oact
: struct_sigaction_ptr
) return int
;
180 pragma Import
(C
, sigaction
, "_internal_sigaction");
186 Time_Slice_Supported
: constant Boolean := True;
187 -- Indicates wether time slicing is supported (i.e FSU threads have been
188 -- compiled with DEF_RR)
190 type timespec
is private;
192 type clockid_t
is private;
194 CLOCK_REALTIME
: constant clockid_t
;
196 function clock_gettime
197 (clock_id
: clockid_t
;
198 tp
: access timespec
) return int
;
199 pragma Import
(C
, clock_gettime
, "clock_gettime");
201 function To_Duration
(TS
: timespec
) return Duration;
202 pragma Inline
(To_Duration
);
204 function To_Timespec
(D
: Duration) return timespec
;
205 pragma Inline
(To_Timespec
);
207 type struct_timeval
is private;
209 function To_Duration
(TV
: struct_timeval
) return Duration;
210 pragma Inline
(To_Duration
);
212 function To_Timeval
(D
: Duration) return struct_timeval
;
213 pragma Inline
(To_Timeval
);
215 -------------------------
216 -- Priority Scheduling --
217 -------------------------
219 SCHED_FIFO
: constant := 0;
220 SCHED_RR
: constant := 1;
221 SCHED_OTHER
: constant := 2;
227 type pid_t
is private;
229 function kill
(pid
: pid_t
; sig
: Signal
) return int
;
230 pragma Import
(C
, kill
, "kill");
232 function getpid
return pid_t
;
233 pragma Import
(C
, getpid
, "getpid");
239 function lwp_self
return System
.Address
;
240 -- lwp_self does not exist on this thread library, revert to pthread_self
241 -- which is the closest approximation (with getpid). This function is
242 -- needed to share 7staprop.adb across POSIX-like targets.
243 pragma Import
(C
, lwp_self
, "pthread_self");
249 type Thread_Body
is access
250 function (arg
: System
.Address
) return System
.Address
;
252 function Thread_Body_Access
is new
253 Unchecked_Conversion
(System
.Address
, Thread_Body
);
255 type pthread_t
is private;
256 subtype Thread_Id
is pthread_t
;
258 type pthread_mutex_t
is limited private;
259 type pthread_cond_t
is limited private;
260 type pthread_attr_t
is limited private;
261 type pthread_mutexattr_t
is limited private;
262 type pthread_condattr_t
is limited private;
263 type pthread_key_t
is private;
265 PTHREAD_CREATE_DETACHED
: constant := 1;
271 Stack_Base_Available
: constant Boolean := True;
272 -- Indicates wether the stack base is available on this target.
273 -- This allows us to share s-osinte.adb between all the FSU run time.
274 -- Note that this value can only be true if pthread_t has a complete
275 -- definition that corresponds exactly to the C header files.
277 function Get_Stack_Base
(thread
: pthread_t
) return Address
;
278 pragma Inline
(Get_Stack_Base
);
279 -- returns the stack base of the specified thread.
280 -- Only call this function when Stack_Base_Available is True.
282 function Get_Page_Size
return size_t
;
283 function Get_Page_Size
return Address
;
284 pragma Import
(C
, Get_Page_Size
, "getpagesize");
285 -- returns the size of a page, or 0 if this is not relevant on this
288 PROT_NONE
: constant := 0;
289 PROT_READ
: constant := 1;
290 PROT_WRITE
: constant := 2;
291 PROT_EXEC
: constant := 4;
292 PROT_ALL
: constant := PROT_READ
+ PROT_WRITE
+ PROT_EXEC
;
294 PROT_ON
: constant := PROT_READ
;
295 PROT_OFF
: constant := PROT_ALL
;
297 function mprotect
(addr
: Address
; len
: size_t
; prot
: int
) return int
;
298 pragma Import
(C
, mprotect
);
300 ---------------------------------------
301 -- Nonstandard Thread Initialization --
302 ---------------------------------------
304 procedure pthread_init
;
305 -- FSU_THREADS requires pthread_init, which is nonstandard
306 -- and this should be invoked during the elaboration of s-taprop.adb
307 pragma Import
(C
, pthread_init
, "pthread_init");
309 -------------------------
310 -- POSIX.1c Section 3 --
311 -------------------------
314 (set
: access sigset_t
;
315 sig
: access Signal
) return int
;
316 -- FSU_THREADS has a nonstandard sigwait
318 function pthread_kill
320 sig
: Signal
) return int
;
321 pragma Import
(C
, pthread_kill
, "pthread_kill");
323 -- FSU threads does not have pthread_sigmask. Instead, it redefines
324 -- sigprocmask and then uses a special syscall API to call the system
325 -- version. Doing syscalls on AiX is very difficult, so we rename the
326 -- pthread version instead.
328 type sigset_t_ptr
is access all sigset_t
;
330 function pthread_sigmask
333 oset
: sigset_t_ptr
) return int
;
334 pragma Import
(C
, pthread_sigmask
, "_internal_sigprocmask");
336 --------------------------
337 -- POSIX.1c Section 11 --
338 --------------------------
340 function pthread_mutexattr_init
341 (attr
: access pthread_mutexattr_t
) return int
;
342 pragma Import
(C
, pthread_mutexattr_init
, "pthread_mutexattr_init");
344 function pthread_mutexattr_destroy
345 (attr
: access pthread_mutexattr_t
) return int
;
346 pragma Import
(C
, pthread_mutexattr_destroy
, "pthread_mutexattr_destroy");
348 function pthread_mutex_init
349 (mutex
: access pthread_mutex_t
;
350 attr
: access pthread_mutexattr_t
) return int
;
351 pragma Import
(C
, pthread_mutex_init
, "pthread_mutex_init");
353 function pthread_mutex_destroy
(mutex
: access pthread_mutex_t
) return int
;
354 pragma Import
(C
, pthread_mutex_destroy
, "pthread_mutex_destroy");
356 function pthread_mutex_lock
(mutex
: access pthread_mutex_t
) return int
;
357 -- FSU_THREADS has nonstandard pthread_mutex_lock
359 function pthread_mutex_unlock
(mutex
: access pthread_mutex_t
) return int
;
360 -- FSU_THREADS has nonstandard pthread_mutex_lock
362 function pthread_condattr_init
363 (attr
: access pthread_condattr_t
) return int
;
364 pragma Import
(C
, pthread_condattr_init
, "pthread_condattr_init");
366 function pthread_condattr_destroy
367 (attr
: access pthread_condattr_t
) return int
;
368 pragma Import
(C
, pthread_condattr_destroy
, "pthread_condattr_destroy");
370 function pthread_cond_init
371 (cond
: access pthread_cond_t
;
372 attr
: access pthread_condattr_t
) return int
;
373 pragma Import
(C
, pthread_cond_init
, "pthread_cond_init");
375 function pthread_cond_destroy
(cond
: access pthread_cond_t
) return int
;
376 pragma Import
(C
, pthread_cond_destroy
, "pthread_cond_destroy");
378 function pthread_cond_signal
(cond
: access pthread_cond_t
) return int
;
379 pragma Import
(C
, pthread_cond_signal
, "pthread_cond_signal");
381 function pthread_cond_wait
382 (cond
: access pthread_cond_t
;
383 mutex
: access pthread_mutex_t
) return int
;
384 -- FSU_THREADS has a nonstandard pthread_cond_wait
386 function pthread_cond_timedwait
387 (cond
: access pthread_cond_t
;
388 mutex
: access pthread_mutex_t
;
389 abstime
: access timespec
) return int
;
390 -- FSU_THREADS has a nonstandard pthread_cond_timedwait
392 Relative_Timed_Wait
: constant Boolean := False;
393 -- pthread_cond_timedwait requires an absolute delay time
395 --------------------------
396 -- POSIX.1c Section 13 --
397 --------------------------
399 PTHREAD_PRIO_NONE
: constant := 0;
400 PTHREAD_PRIO_PROTECT
: constant := 2;
401 PTHREAD_PRIO_INHERIT
: constant := 1;
403 function pthread_mutexattr_setprotocol
404 (attr
: access pthread_mutexattr_t
;
405 protocol
: int
) return int
;
406 pragma Import
(C
, pthread_mutexattr_setprotocol
);
408 function pthread_mutexattr_setprioceiling
409 (attr
: access pthread_mutexattr_t
;
410 prioceiling
: int
) return int
;
412 (C
, pthread_mutexattr_setprioceiling
,
413 "pthread_mutexattr_setprio_ceiling");
415 type struct_sched_param
is record
416 sched_priority
: int
; -- scheduling priority
419 function pthread_setschedparam
422 param
: access struct_sched_param
) return int
;
423 -- FSU_THREADS does not have pthread_setschedparam
425 function pthread_attr_setscope
426 (attr
: access pthread_attr_t
;
427 contentionscope
: int
) return int
;
428 pragma Import
(C
, pthread_attr_setscope
, "pthread_attr_setscope");
430 function pthread_attr_setinheritsched
431 (attr
: access pthread_attr_t
;
432 inheritsched
: int
) return int
;
433 pragma Import
(C
, pthread_attr_setinheritsched
);
435 function pthread_attr_setschedpolicy
436 (attr
: access pthread_attr_t
;
437 policy
: int
) return int
;
438 pragma Import
(C
, pthread_attr_setschedpolicy
, "pthread_attr_setsched");
440 function sched_yield
return int
;
441 -- FSU_THREADS does not have sched_yield;
443 ---------------------------
444 -- P1003.1c - Section 16 --
445 ---------------------------
447 function pthread_attr_init
(attributes
: access pthread_attr_t
) return int
;
448 pragma Import
(C
, pthread_attr_init
, "pthread_attr_init");
450 function pthread_attr_destroy
451 (attributes
: access pthread_attr_t
) return int
;
452 pragma Import
(C
, pthread_attr_destroy
, "pthread_attr_destroy");
454 function pthread_attr_setdetachstate
455 (attr
: access pthread_attr_t
;
456 detachstate
: int
) return int
;
457 -- FSU_THREADS has a nonstandard pthread_attr_setdetachstate
459 function pthread_attr_setstacksize
460 (attr
: access pthread_attr_t
;
461 stacksize
: size_t
) return int
;
462 pragma Import
(C
, pthread_attr_setstacksize
);
464 function pthread_create
465 (thread
: access pthread_t
;
466 attributes
: access pthread_attr_t
;
467 start_routine
: Thread_Body
;
468 arg
: System
.Address
) return int
;
469 pragma Import
(C
, pthread_create
, "pthread_create");
471 procedure pthread_exit
(status
: System
.Address
);
472 pragma Import
(C
, pthread_exit
, "pthread_exit");
474 function pthread_self
return pthread_t
;
475 pragma Import
(C
, pthread_self
, "pthread_self");
477 --------------------------
478 -- POSIX.1c Section 17 --
479 --------------------------
481 function pthread_setspecific
482 (key
: pthread_key_t
;
483 value
: System
.Address
) return int
;
484 pragma Import
(C
, pthread_setspecific
, "pthread_setspecific");
486 function pthread_getspecific
(key
: pthread_key_t
) return System
.Address
;
487 -- FSU_THREADS has a nonstandard pthread_getspecific
489 type destructor_pointer
is access procedure (arg
: System
.Address
);
491 function pthread_key_create
492 (key
: access pthread_key_t
;
493 destructor
: destructor_pointer
) return int
;
494 pragma Import
(C
, pthread_key_create
, "pthread_key_create");
498 type sigset_t
is record
499 losigs
: unsigned_long
;
500 hisigs
: unsigned_long
;
502 pragma Convention
(C_Pass_By_Copy
, sigset_t
);
504 type pid_t
is new int
;
506 type time_t
is new long
;
508 type timespec
is record
512 pragma Convention
(C
, timespec
);
514 type clockid_t
is new int
;
515 CLOCK_REALTIME
: constant clockid_t
:= 0;
517 type struct_timeval
is record
521 pragma Convention
(C
, struct_timeval
);
523 type pthread_attr_t
is record
526 contentionscope
: int
;
531 starttime
: timespec
;
535 pragma Convention
(C_Pass_By_Copy
, pthread_attr_t
);
537 type pthread_condattr_t
is record
540 pragma Convention
(C
, pthread_condattr_t
);
542 type pthread_mutexattr_t
is record
547 pragma Convention
(C
, pthread_mutexattr_t
);
549 type sigjmp_buf
is array (Integer range 0 .. 63) of int
;
551 type pthread_t_struct
is record
552 context
: sigjmp_buf
;
556 stack_base
: System
.Address
;
558 pragma Convention
(C
, pthread_t_struct
);
560 type pthread_t
is access all pthread_t_struct
;
562 type queue_t
is record
563 head
: System
.Address
;
564 tail
: System
.Address
;
566 pragma Convention
(C
, queue_t
);
568 type pthread_mutex_t
is record
571 owner
: System
.Address
;
575 prev_max_ceiling_prio
: int
;
577 pragma Convention
(C
, pthread_mutex_t
);
579 type pthread_cond_t
is record
583 mutex
: System
.Address
;
585 pragma Convention
(C
, pthread_cond_t
);
587 type pthread_key_t
is new int
;
589 end System
.OS_Interface
;