Update concepts branch to revision 131834
[official-gcc.git] / gcc / ada / s-osinte-solaris.ads
blob32213ccabd4bcdbcdf19b6ba066ce4629febbf3a
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
4 -- --
5 -- S Y S T E M . O S _ I N T E R F A C E --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1991-1994, Florida State University --
10 -- Copyright (C) 1995-2008, Free Software Foundation, Inc. --
11 -- --
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, 51 Franklin Street, Fifth Floor, --
21 -- Boston, MA 02110-1301, USA. --
22 -- --
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. --
29 -- --
30 -- GNARL was developed by the GNARL team at Florida State University. --
31 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
32 -- --
33 ------------------------------------------------------------------------------
35 -- This is a Solaris (native) version of this package
37 -- This package includes all direct interfaces to OS services
38 -- that are needed by the tasking run-time (libgnarl).
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.
43 with Interfaces.C;
45 with Ada.Unchecked_Conversion;
47 package System.OS_Interface is
48 pragma Preelaborate;
50 pragma Linker_Options ("-lposix4");
51 pragma Linker_Options ("-lthread");
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;
63 -----------
64 -- Errno --
65 -----------
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 ETIME : constant := 62;
75 ETIMEDOUT : constant := 145;
77 -------------
78 -- Signals --
79 -------------
81 Max_Interrupt : constant := 45;
82 type Signal is new int range 0 .. Max_Interrupt;
83 for Signal'Size use int'Size;
85 SIGHUP : constant := 1; -- hangup
86 SIGINT : constant := 2; -- interrupt (rubout)
87 SIGQUIT : constant := 3; -- quit (ASCD FS)
88 SIGILL : constant := 4; -- illegal instruction (not reset)
89 SIGTRAP : constant := 5; -- trace trap (not reset)
90 SIGIOT : constant := 6; -- IOT instruction
91 SIGABRT : constant := 6; -- used by abort, replace SIGIOT in the future
92 SIGEMT : constant := 7; -- EMT instruction
93 SIGFPE : constant := 8; -- floating point exception
94 SIGKILL : constant := 9; -- kill (cannot be caught or ignored)
95 SIGBUS : constant := 10; -- bus error
96 SIGSEGV : constant := 11; -- segmentation violation
97 SIGSYS : constant := 12; -- bad argument to system call
98 SIGPIPE : constant := 13; -- write on a pipe with no one to read it
99 SIGALRM : constant := 14; -- alarm clock
100 SIGTERM : constant := 15; -- software termination signal from kill
101 SIGUSR1 : constant := 16; -- user defined signal 1
102 SIGUSR2 : constant := 17; -- user defined signal 2
103 SIGCLD : constant := 18; -- alias for SIGCHLD
104 SIGCHLD : constant := 18; -- child status change
105 SIGPWR : constant := 19; -- power-fail restart
106 SIGWINCH : constant := 20; -- window size change
107 SIGURG : constant := 21; -- urgent condition on IO channel
108 SIGPOLL : constant := 22; -- pollable event occurred
109 SIGIO : constant := 22; -- I/O possible (Solaris SIGPOLL alias)
110 SIGSTOP : constant := 23; -- stop (cannot be caught or ignored)
111 SIGTSTP : constant := 24; -- user stop requested from tty
112 SIGCONT : constant := 25; -- stopped process has been continued
113 SIGTTIN : constant := 26; -- background tty read attempted
114 SIGTTOU : constant := 27; -- background tty write attempted
115 SIGVTALRM : constant := 28; -- virtual timer expired
116 SIGPROF : constant := 29; -- profiling timer expired
117 SIGXCPU : constant := 30; -- CPU time limit exceeded
118 SIGXFSZ : constant := 31; -- filesize limit exceeded
119 SIGWAITING : constant := 32; -- process's lwps blocked (Solaris)
120 SIGLWP : constant := 33; -- used by thread library (Solaris)
121 SIGFREEZE : constant := 34; -- used by CPR (Solaris)
122 SIGTHAW : constant := 35; -- used by CPR (Solaris)
123 SIGCANCEL : constant := 36; -- thread cancellation signal (libthread)
125 type Signal_Set is array (Natural range <>) of Signal;
127 Unmasked : constant Signal_Set := (SIGTRAP, SIGLWP, SIGPROF);
129 -- Following signals should not be disturbed.
130 -- See c-posix-signals.c in FLORIST.
132 Reserved : constant Signal_Set :=
133 (SIGKILL, SIGSTOP, SIGWAITING, SIGCANCEL, SIGTRAP, SIGSEGV);
135 type sigset_t is private;
137 function sigaddset (set : access sigset_t; sig : Signal) return int;
138 pragma Import (C, sigaddset, "sigaddset");
140 function sigdelset (set : access sigset_t; sig : Signal) return int;
141 pragma Import (C, sigdelset, "sigdelset");
143 function sigfillset (set : access sigset_t) return int;
144 pragma Import (C, sigfillset, "sigfillset");
146 function sigismember (set : access sigset_t; sig : Signal) return int;
147 pragma Import (C, sigismember, "sigismember");
149 function sigemptyset (set : access sigset_t) return int;
150 pragma Import (C, sigemptyset, "sigemptyset");
152 type union_type_3 is new String (1 .. 116);
153 type siginfo_t is record
154 si_signo : int;
155 si_code : int;
156 si_errno : int;
157 X_data : union_type_3;
158 end record;
159 pragma Convention (C, siginfo_t);
161 -- The types mcontext_t and gregset_t are part of the ucontext_t
162 -- information, which is specific to Solaris2.4 for SPARC
163 -- The ucontext_t info seems to be used by the handler
164 -- for SIGSEGV to decide whether it is a Storage_Error (stack overflow) or
165 -- a Constraint_Error (bad pointer). The original code that did this
166 -- is suspect, so it is not clear whether we really need this part of
167 -- the signal context information, or perhaps something else.
168 -- More analysis is needed, after which these declarations may need to
169 -- be changed.
171 FPE_INTDIV : constant := 1; -- integer divide by zero
172 FPE_INTOVF : constant := 2; -- integer overflow
173 FPE_FLTDIV : constant := 3; -- floating point divide by zero
174 FPE_FLTOVF : constant := 4; -- floating point overflow
175 FPE_FLTUND : constant := 5; -- floating point underflow
176 FPE_FLTRES : constant := 6; -- floating point inexact result
177 FPE_FLTINV : constant := 7; -- invalid floating point operation
178 FPE_FLTSUB : constant := 8; -- subscript out of range
180 type greg_t is new int;
182 type gregset_t is array (0 .. 18) of greg_t;
184 type union_type_2 is new String (1 .. 128);
185 type record_type_1 is record
186 fpu_fr : union_type_2;
187 fpu_q : System.Address;
188 fpu_fsr : unsigned;
189 fpu_qcnt : unsigned_char;
190 fpu_q_entrysize : unsigned_char;
191 fpu_en : unsigned_char;
192 end record;
193 pragma Convention (C, record_type_1);
195 type array_type_7 is array (Integer range 0 .. 20) of long;
196 type mcontext_t is record
197 gregs : gregset_t;
198 gwins : System.Address;
199 fpregs : record_type_1;
200 filler : array_type_7;
201 end record;
202 pragma Convention (C, mcontext_t);
204 type record_type_2 is record
205 ss_sp : System.Address;
206 ss_size : int;
207 ss_flags : int;
208 end record;
209 pragma Convention (C, record_type_2);
211 type array_type_8 is array (Integer range 0 .. 22) of long;
212 type ucontext_t is record
213 uc_flags : unsigned_long;
214 uc_link : System.Address;
215 uc_sigmask : sigset_t;
216 uc_stack : record_type_2;
217 uc_mcontext : mcontext_t;
218 uc_filler : array_type_8;
219 end record;
220 pragma Convention (C, ucontext_t);
222 type Signal_Handler is access procedure
223 (signo : Signal;
224 info : access siginfo_t;
225 context : access ucontext_t);
227 type union_type_1 is new plain_char;
228 type array_type_2 is array (Integer range 0 .. 1) of int;
229 type struct_sigaction is record
230 sa_flags : int;
231 sa_handler : System.Address;
232 sa_mask : sigset_t;
233 sa_resv : array_type_2;
234 end record;
235 pragma Convention (C, struct_sigaction);
236 type struct_sigaction_ptr is access all struct_sigaction;
238 SIG_BLOCK : constant := 1;
239 SIG_UNBLOCK : constant := 2;
240 SIG_SETMASK : constant := 3;
242 SIG_DFL : constant := 0;
243 SIG_IGN : constant := 1;
245 function sigaction
246 (sig : Signal;
247 act : struct_sigaction_ptr;
248 oact : struct_sigaction_ptr) return int;
249 pragma Import (C, sigaction, "sigaction");
251 ----------
252 -- Time --
253 ----------
255 type timespec is private;
257 type clockid_t is private;
259 CLOCK_REALTIME : constant clockid_t;
261 function clock_gettime
262 (clock_id : clockid_t; tp : access timespec) return int;
263 pragma Import (C, clock_gettime, "clock_gettime");
265 function clock_getres
266 (clock_id : clockid_t; res : access timespec) return int;
267 pragma Import (C, clock_getres, "clock_getres");
269 function To_Duration (TS : timespec) return Duration;
270 pragma Inline (To_Duration);
272 function To_Timespec (D : Duration) return timespec;
273 pragma Inline (To_Timespec);
275 type struct_timeval is private;
276 -- This is needed on systems that do not have clock_gettime()
277 -- but do have gettimeofday().
279 function To_Duration (TV : struct_timeval) return Duration;
280 pragma Inline (To_Duration);
282 function To_Timeval (D : Duration) return struct_timeval;
283 pragma Inline (To_Timeval);
285 -------------
286 -- Process --
287 -------------
289 type pid_t is private;
291 function kill (pid : pid_t; sig : Signal) return int;
292 pragma Import (C, kill, "kill");
294 function getpid return pid_t;
295 pragma Import (C, getpid, "getpid");
297 -------------
298 -- Threads --
299 -------------
301 type Thread_Body is access
302 function (arg : System.Address) return System.Address;
303 pragma Convention (C, Thread_Body);
305 function Thread_Body_Access is new
306 Ada.Unchecked_Conversion (System.Address, Thread_Body);
308 THR_DETACHED : constant := 64;
309 THR_BOUND : constant := 1;
310 THR_NEW_LWP : constant := 2;
311 USYNC_THREAD : constant := 0;
313 type thread_t is new unsigned;
314 subtype Thread_Id is thread_t;
315 -- These types should be commented ???
317 function To_thread_t is new Ada.Unchecked_Conversion (Integer, thread_t);
319 type mutex_t is limited private;
321 type cond_t is limited private;
323 type thread_key_t is private;
325 function thr_create
326 (stack_base : System.Address;
327 stack_size : size_t;
328 start_routine : Thread_Body;
329 arg : System.Address;
330 flags : int;
331 new_thread : access thread_t) return int;
332 pragma Import (C, thr_create, "thr_create");
334 function thr_min_stack return size_t;
335 pragma Import (C, thr_min_stack, "thr_min_stack");
337 function thr_self return thread_t;
338 pragma Import (C, thr_self, "thr_self");
340 function mutex_init
341 (mutex : access mutex_t;
342 mtype : int;
343 arg : System.Address) return int;
344 pragma Import (C, mutex_init, "mutex_init");
346 function mutex_destroy (mutex : access mutex_t) return int;
347 pragma Import (C, mutex_destroy, "mutex_destroy");
349 function mutex_lock (mutex : access mutex_t) return int;
350 pragma Import (C, mutex_lock, "mutex_lock");
352 function mutex_unlock (mutex : access mutex_t) return int;
353 pragma Import (C, mutex_unlock, "mutex_unlock");
355 function cond_init
356 (cond : access cond_t;
357 ctype : int;
358 arg : int) return int;
359 pragma Import (C, cond_init, "cond_init");
361 function cond_wait
362 (cond : access cond_t; mutex : access mutex_t) return int;
363 pragma Import (C, cond_wait, "cond_wait");
365 function cond_timedwait
366 (cond : access cond_t;
367 mutex : access mutex_t;
368 abstime : access timespec) return int;
369 pragma Import (C, cond_timedwait, "cond_timedwait");
371 function cond_signal (cond : access cond_t) return int;
372 pragma Import (C, cond_signal, "cond_signal");
374 function cond_destroy (cond : access cond_t) return int;
375 pragma Import (C, cond_destroy, "cond_destroy");
377 function thr_setspecific
378 (key : thread_key_t; value : System.Address) return int;
379 pragma Import (C, thr_setspecific, "thr_setspecific");
381 function thr_getspecific
382 (key : thread_key_t;
383 value : access System.Address) return int;
384 pragma Import (C, thr_getspecific, "thr_getspecific");
386 function thr_keycreate
387 (key : access thread_key_t; destructor : System.Address) return int;
388 pragma Import (C, thr_keycreate, "thr_keycreate");
390 function thr_setprio (thread : thread_t; priority : int) return int;
391 pragma Import (C, thr_setprio, "thr_setprio");
393 procedure thr_exit (status : System.Address);
394 pragma Import (C, thr_exit, "thr_exit");
396 function thr_setconcurrency (new_level : int) return int;
397 pragma Import (C, thr_setconcurrency, "thr_setconcurrency");
399 function sigwait (set : access sigset_t; sig : access Signal) return int;
400 pragma Import (C, sigwait, "__posix_sigwait");
402 function thr_kill (thread : thread_t; sig : Signal) return int;
403 pragma Import (C, thr_kill, "thr_kill");
405 function thr_sigsetmask
406 (how : int;
407 set : access sigset_t;
408 oset : access sigset_t) return int;
409 pragma Import (C, thr_sigsetmask, "thr_sigsetmask");
411 function pthread_sigmask
412 (how : int;
413 set : access sigset_t;
414 oset : access sigset_t) return int;
415 pragma Import (C, pthread_sigmask, "thr_sigsetmask");
417 function thr_suspend (target_thread : thread_t) return int;
418 pragma Import (C, thr_suspend, "thr_suspend");
420 function thr_continue (target_thread : thread_t) return int;
421 pragma Import (C, thr_continue, "thr_continue");
423 procedure thr_yield;
424 pragma Import (C, thr_yield, "thr_yield");
426 ---------
427 -- LWP --
428 ---------
430 P_PID : constant := 0;
431 P_LWPID : constant := 8;
433 PC_GETCID : constant := 0;
434 PC_GETCLINFO : constant := 1;
435 PC_SETPARMS : constant := 2;
436 PC_GETPARMS : constant := 3;
437 PC_ADMIN : constant := 4;
439 PC_CLNULL : constant := -1;
441 RT_NOCHANGE : constant := -1;
442 RT_TQINF : constant := -2;
443 RT_TQDEF : constant := -3;
445 PC_CLNMSZ : constant := 16;
447 PC_VERSION : constant := 1;
449 type lwpid_t is new int;
451 type pri_t is new short;
453 type id_t is new long;
455 P_MYID : constant := -1;
456 -- The specified LWP or process is the current one
458 type struct_pcinfo is record
459 pc_cid : id_t;
460 pc_clname : String (1 .. PC_CLNMSZ);
461 rt_maxpri : short;
462 end record;
463 pragma Convention (C, struct_pcinfo);
465 type struct_pcparms is record
466 pc_cid : id_t;
467 rt_pri : pri_t;
468 rt_tqsecs : long;
469 rt_tqnsecs : long;
470 end record;
471 pragma Convention (C, struct_pcparms);
473 function priocntl
474 (ver : int;
475 id_type : int;
476 id : lwpid_t;
477 cmd : int;
478 arg : System.Address) return Interfaces.C.long;
479 pragma Import (C, priocntl, "__priocntl");
481 function lwp_self return lwpid_t;
482 pragma Import (C, lwp_self, "_lwp_self");
484 type processorid_t is new int;
485 type processorid_t_ptr is access all processorid_t;
487 -- Constants for function processor_bind
489 PBIND_QUERY : constant processorid_t := -2;
490 -- The processor bindings are not changed
492 PBIND_NONE : constant processorid_t := -1;
493 -- The processor bindings of the specified LWPs are cleared
495 -- Flags for function p_online
497 PR_OFFLINE : constant int := 1;
498 -- Processor is offline, as quiet as possible
500 PR_ONLINE : constant int := 2;
501 -- Processor online
503 PR_STATUS : constant int := 3;
504 -- Value passed to p_online to request status
506 function p_online (processorid : processorid_t; flag : int) return int;
507 pragma Import (C, p_online, "p_online");
509 function processor_bind
510 (id_type : int;
511 id : id_t;
512 proc_id : processorid_t;
513 obind : processorid_t_ptr) return int;
514 pragma Import (C, processor_bind, "processor_bind");
516 procedure pthread_init;
517 -- Dummy procedure to share s-intman.adb with other Solaris targets
519 private
521 type array_type_1 is array (0 .. 3) of unsigned_long;
522 type sigset_t is record
523 X_X_sigbits : array_type_1;
524 end record;
525 pragma Convention (C, sigset_t);
527 type pid_t is new long;
529 type time_t is new long;
531 type timespec is record
532 tv_sec : time_t;
533 tv_nsec : long;
534 end record;
535 pragma Convention (C, timespec);
537 type clockid_t is new int;
538 CLOCK_REALTIME : constant clockid_t := 0;
540 type struct_timeval is record
541 tv_sec : long;
542 tv_usec : long;
543 end record;
544 pragma Convention (C, struct_timeval);
546 type array_type_9 is array (0 .. 3) of unsigned_char;
547 type record_type_3 is record
548 flag : array_type_9;
549 Xtype : unsigned_long;
550 end record;
551 pragma Convention (C, record_type_3);
553 type mutex_t is record
554 flags : record_type_3;
555 lock : String (1 .. 8);
556 data : String (1 .. 8);
557 end record;
558 pragma Convention (C, mutex_t);
560 type cond_t is record
561 flag : array_type_9;
562 Xtype : unsigned_long;
563 data : String (1 .. 8);
564 end record;
565 pragma Convention (C, cond_t);
567 type thread_key_t is new unsigned;
569 end System.OS_Interface;