OSDN Git Service

2007-04-20 Robert Dewar <dewar@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / s-osinte-lynxos.ads
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-2007, 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 ------------------------------------------------------------------------------
34
35 --  This is a LynxOS (POSIX Threads) version of this package
36
37 --  This package encapsulates all direct interfaces to OS services
38 --  that are needed by children of System.
39
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.
42
43 with Interfaces.C;
44 with Ada.Unchecked_Conversion;
45
46 package System.OS_Interface is
47    pragma Preelaborate;
48
49    pragma Linker_Options ("-mthreads");
50    --  Selects the POSIX 1.c runtime, rather than the non-threading runtime
51    --  or the deprecated legacy threads library. The -mthreads flag is
52    --  defined in patch.LynxOS and matches the definition for Lynx's gcc.
53
54    subtype int            is Interfaces.C.int;
55    subtype short          is Interfaces.C.short;
56    subtype long           is Interfaces.C.long;
57    subtype unsigned       is Interfaces.C.unsigned;
58    subtype unsigned_short is Interfaces.C.unsigned_short;
59    subtype unsigned_long  is Interfaces.C.unsigned_long;
60    subtype unsigned_char  is Interfaces.C.unsigned_char;
61    subtype plain_char     is Interfaces.C.plain_char;
62    subtype size_t         is Interfaces.C.size_t;
63
64    -----------
65    -- Errno --
66    -----------
67
68    function errno return int;
69    pragma Import (C, errno, "__get_errno");
70
71    EAGAIN    : constant := 11;
72    EINTR     : constant := 4;
73    EINVAL    : constant := 22;
74    ENOMEM    : constant := 12;
75    ETIMEDOUT : constant := 60;
76
77    -------------
78    -- Signals --
79    -------------
80
81    Max_Interrupt : constant := 63;
82
83    --  Max_Interrupt is the number of OS signals, as defined in:
84    --
85    --   /usr/include/sys/signal.h
86    --
87    --
88    --  The lowest numbered signal is 1, but 0 is a valid argument to some
89    --  library functions, eg. kill(2). However, 0 is not just another
90    --  signal: For instance 'I in Signal' and similar should be used with
91    --  caution.
92
93    type Signal is new int range 0 .. Max_Interrupt;
94    for  Signal'Size use int'Size;
95
96    SIGHUP        : constant := 1;  --  hangup
97    SIGINT        : constant := 2;  --  interrupt (rubout)
98    SIGQUIT       : constant := 3;  --  quit (ASCD FS)
99    SIGILL        : constant := 4;  --  illegal instruction (not reset)
100    SIGTRAP       : constant := 5;  --  trace trap (not reset)
101    SIGBRK        : constant := 6;  --  break
102    SIGIOT        : constant := 6;  --  IOT instruction
103    SIGABRT       : constant := 6;  --  used by abort, replace SIGIOT in future
104    SIGCORE       : constant := 7;  --  kill with core dump
105    SIGEMT        : constant := 7;  --  EMT instruction
106    SIGFPE        : constant := 8;  --  floating point exception
107    SIGKILL       : constant := 9;  --  kill (cannot be caught or ignored)
108    SIGBUS        : constant := 10; --  bus error
109    SIGSEGV       : constant := 11; --  segmentation violation
110    SIGSYS        : constant := 12; --  bad argument to system call
111    SIGPIPE       : constant := 13; --  write on a pipe with no one to read it
112    SIGALRM       : constant := 14; --  alarm clock
113    SIGTERM       : constant := 15; --  software termination signal from kill
114    SIGURG        : constant := 16; --  urgent condition on IO channel
115    SIGSTOP       : constant := 17; --  stop (cannot be caught or ignored)
116    SIGTSTP       : constant := 18; --  user stop requested from tty
117    SIGCONT       : constant := 19; --  stopped process has been continued
118    SIGCLD        : constant := 20; --  alias for SIGCHLD
119    SIGCHLD       : constant := 20; --  child status change
120    SIGTTIN       : constant := 21; --  background tty read attempted
121    SIGTTOU       : constant := 22; --  background tty write attempted
122    SIGIO         : constant := 23; --  I/O possible (Solaris SIGPOLL alias)
123    SIGPOLL       : constant := 23; --  pollable event occurred
124    SIGTHREADKILL : constant := 24; --  Reserved by LynxOS runtime
125    SIGXCPU       : constant := 24; --  CPU time limit exceeded
126    SIGXFSZ       : constant := 25; --  filesize limit exceeded
127    SIGVTALRM     : constant := 26; --  virtual timer expired
128    SIGPROF       : constant := 27; --  profiling timer expired
129    SIGWINCH      : constant := 28; --  window size change
130    SIGLOST       : constant := 29; --  SUN 4.1 compatibility
131    SIGUSR1       : constant := 30; --  user defined signal 1
132    SIGUSR2       : constant := 31; --  user defined signal 2
133
134    SIGPRIO       : constant := 32;
135    --  sent to a process with its priority or group is changed
136
137    SIGADAABORT : constant := SIGABRT;
138    --  Change this if you want to use another signal for task abort.
139    --  SIGTERM might be a good one.
140
141    type Signal_Set is array (Natural range <>) of Signal;
142
143    Unmasked    : constant Signal_Set :=
144      (SIGTRAP, SIGTTIN, SIGTTOU, SIGTSTP, SIGPROF, SIGTHREADKILL);
145    Reserved    : constant Signal_Set := (SIGABRT, SIGKILL, SIGSTOP, SIGPRIO);
146
147    type sigset_t is private;
148
149    function sigaddset (set : access sigset_t; sig : Signal) return int;
150    pragma Import (C, sigaddset, "sigaddset");
151
152    function sigdelset (set : access sigset_t; sig : Signal) return int;
153    pragma Import (C, sigdelset, "sigdelset");
154
155    function sigfillset (set : access sigset_t) return int;
156    pragma Import (C, sigfillset, "sigfillset");
157
158    function sigismember (set : access sigset_t; sig : Signal) return int;
159    pragma Import (C, sigismember, "sigismember");
160
161    function sigemptyset (set : access sigset_t) return int;
162    pragma Import (C, sigemptyset, "sigemptyset");
163
164    type struct_sigaction is record
165       sa_handler   : System.Address;
166       sa_mask      : sigset_t;
167       sa_flags     : int;
168    end record;
169    pragma Convention (C, struct_sigaction);
170    type struct_sigaction_ptr is access all struct_sigaction;
171
172    SA_SIGINFO  : constant := 16#80#;
173
174    SIG_BLOCK   : constant := 0;
175    SIG_UNBLOCK : constant := 1;
176    SIG_SETMASK : constant := 2;
177
178    SIG_DFL : constant := 0;
179    SIG_IGN : constant := 1;
180
181    function sigaction
182      (sig  : Signal;
183       act  : struct_sigaction_ptr;
184       oact : struct_sigaction_ptr) return int;
185    pragma Import (C, sigaction, "sigaction");
186
187    ----------
188    -- Time --
189    ----------
190
191    Time_Slice_Supported : constant Boolean := True;
192    --  Indicates whether time slicing is supported
193
194    type timespec is private;
195
196    type clockid_t is private;
197
198    CLOCK_REALTIME : constant clockid_t;
199
200    function clock_gettime
201      (clock_id : clockid_t;
202       tp       : access timespec) return int;
203    pragma Import (C, clock_gettime, "clock_gettime");
204
205    function clock_getres
206      (clock_id : clockid_t;
207       res      : access timespec) return int;
208    pragma Import (C, clock_getres, "clock_getres");
209
210    function To_Duration (TS : timespec) return Duration;
211    pragma Inline (To_Duration);
212
213    function To_Timespec (D : Duration) return timespec;
214    pragma Inline (To_Timespec);
215
216    type struct_timezone is record
217       tz_minuteswest : int;
218       tz_dsttime     : int;
219    end record;
220    pragma Convention (C, struct_timezone);
221    type struct_timezone_ptr is access all struct_timezone;
222
223    -------------------------
224    -- Priority Scheduling --
225    -------------------------
226
227    SCHED_FIFO  : constant := 16#200000#;
228    SCHED_RR    : constant := 16#100000#;
229    SCHED_OTHER : constant := 16#400000#;
230
231    -------------
232    -- Process --
233    -------------
234
235    type pid_t is private;
236
237    function kill (pid : pid_t; sig : Signal) return int;
238    pragma Import (C, kill, "kill");
239
240    function getpid return pid_t;
241    pragma Import (C, getpid, "getpid");
242
243    ---------
244    -- LWP --
245    ---------
246
247    function lwp_self return System.Address;
248    pragma Import (C, lwp_self, "pthread_self");
249
250    -------------
251    -- Threads --
252    -------------
253
254    type Thread_Body is access
255      function (arg : System.Address) return System.Address;
256
257    function Thread_Body_Access is new
258      Ada.Unchecked_Conversion (System.Address, Thread_Body);
259
260    type pthread_t           is private;
261    subtype Thread_Id        is pthread_t;
262
263    type pthread_mutex_t     is limited private;
264    type pthread_cond_t      is limited private;
265    type pthread_attr_t      is limited private;
266    type pthread_mutexattr_t is limited private;
267    type pthread_condattr_t  is limited private;
268    type pthread_key_t       is private;
269
270    PTHREAD_CREATE_DETACHED : constant := 1;
271    PTHREAD_CREATE_JOINABLE : constant := 0;
272
273    -----------
274    -- Stack --
275    -----------
276
277    Stack_Base_Available : constant Boolean := False;
278    --  Indicates whether the stack base is available on this target.
279
280    function Get_Stack_Base (thread : pthread_t) return Address;
281    pragma Inline (Get_Stack_Base);
282    --  Returns the stack base of the specified thread.
283    --  Only call this function when Stack_Base_Available is True.
284
285    function Get_Page_Size return size_t;
286    function Get_Page_Size return Address;
287    pragma Import (C, Get_Page_Size, "getpagesize");
288    --  Returns the size of a page, or 0 if this is not relevant on this
289    --  target
290
291    PROT_NONE  : constant := 1;
292    PROT_READ  : constant := 2;
293    PROT_WRITE : constant := 4;
294    PROT_EXEC  : constant := 8;
295    PROT_ALL   : constant := PROT_READ + PROT_WRITE + PROT_EXEC;
296
297    PROT_ON    : constant := PROT_READ;
298    PROT_OFF   : constant := PROT_ALL;
299
300    function mprotect (addr : Address; len : size_t; prot : int) return int;
301    pragma Import (C, mprotect);
302
303    ---------------------------------------
304    -- Nonstandard Thread Initialization --
305    ---------------------------------------
306
307    procedure pthread_init;
308    --  This is a dummy procedure to share some GNULLI files
309
310    -------------------------
311    -- POSIX.1c  Section 3 --
312    -------------------------
313
314    function sigwait
315      (set : access sigset_t;
316       sig : access Signal) return int;
317    pragma Inline (sigwait);
318    --  LynxOS has non standard sigwait
319
320    function pthread_kill
321      (thread : pthread_t;
322       sig    : Signal) return int;
323    pragma Import (C, pthread_kill, "pthread_kill");
324
325    function pthread_sigmask
326      (how  : int;
327       set  : access sigset_t;
328       oset : access sigset_t) return int;
329    pragma Import (C, pthread_sigmask, "pthread_sigmask");
330    --  The behavior of pthread_sigmask on LynxOS requires
331    --  further investigation.
332
333    ----------------------------
334    --  POSIX.1c  Section 11  --
335    ----------------------------
336
337    function pthread_mutexattr_init
338      (attr : access pthread_mutexattr_t) return int;
339    pragma Import (C, pthread_mutexattr_init, "pthread_mutexattr_init");
340
341    function pthread_mutexattr_destroy
342      (attr : access pthread_mutexattr_t) return int;
343    pragma Import (C, pthread_mutexattr_destroy, "pthread_mutexattr_destroy");
344
345    function pthread_mutex_init
346      (mutex : access pthread_mutex_t;
347       attr  : access pthread_mutexattr_t) return int;
348    pragma Import (C, pthread_mutex_init, "pthread_mutex_init");
349
350    function pthread_mutex_destroy (mutex : access pthread_mutex_t) return int;
351    pragma Import (C, pthread_mutex_destroy, "pthread_mutex_destroy");
352
353    function pthread_mutex_lock (mutex : access pthread_mutex_t) return int;
354    pragma Import (C, pthread_mutex_lock, "pthread_mutex_lock");
355
356    function pthread_mutex_unlock (mutex : access pthread_mutex_t) return int;
357    pragma Import (C, pthread_mutex_unlock, "pthread_mutex_unlock");
358
359    function pthread_condattr_init
360      (attr : access pthread_condattr_t) return int;
361    pragma Import (C, pthread_condattr_init, "pthread_condattr_init");
362
363    function pthread_condattr_destroy
364      (attr : access pthread_condattr_t) return int;
365    pragma Import (C, pthread_condattr_destroy, "pthread_condattr_destroy");
366
367    function pthread_cond_init
368      (cond : access pthread_cond_t;
369       attr : access pthread_condattr_t) return int;
370    pragma Import (C, pthread_cond_init, "pthread_cond_init");
371
372    function pthread_cond_destroy (cond : access pthread_cond_t) return int;
373    pragma Import (C, pthread_cond_destroy, "pthread_cond_destroy");
374
375    function pthread_cond_signal (cond : access pthread_cond_t) return int;
376    pragma Import (C, pthread_cond_signal, "pthread_cond_signal");
377
378    function pthread_cond_wait
379      (cond  : access pthread_cond_t;
380       mutex : access pthread_mutex_t) return int;
381    pragma Import (C, pthread_cond_wait, "pthread_cond_wait");
382
383    function pthread_cond_timedwait
384      (cond    : access pthread_cond_t;
385       mutex   : access pthread_mutex_t;
386       abstime : access timespec) return int;
387    pragma Import (C, pthread_cond_timedwait, "pthread_cond_timedwait");
388
389    Relative_Timed_Wait : constant Boolean := False;
390    --  pthread_cond_timedwait requires an absolute delay time
391
392    --------------------------
393    -- POSIX.1c  Section 13 --
394    --------------------------
395
396    PTHREAD_PRIO_NONE    : constant := 0;
397    PTHREAD_PRIO_INHERIT : constant := 1;
398    PTHREAD_PRIO_PROTECT : constant := 2;
399
400    function pthread_mutexattr_setprotocol
401      (attr     : access pthread_mutexattr_t;
402       protocol : int) return int;
403    pragma Import (C, pthread_mutexattr_setprotocol);
404
405    function pthread_mutexattr_setprioceiling
406      (attr        : access pthread_mutexattr_t;
407       prioceiling : int) return int;
408    pragma Import (C, pthread_mutexattr_setprioceiling);
409
410    type struct_sched_param is record
411       sched_priority : int;
412    end record;
413
414    function pthread_setschedparam
415      (thread : pthread_t;
416       policy : int;
417       param  : access struct_sched_param) return int;
418    pragma Import (C, pthread_setschedparam, "pthread_setschedparam");
419
420    function pthread_attr_setscope
421      (attr            : access pthread_attr_t;
422       contentionscope : int) return int;
423    pragma Import (C, pthread_attr_setscope, "pthread_attr_setscope");
424
425    function pthread_attr_setinheritsched
426      (attr         : access pthread_attr_t;
427       inheritsched : int) return int;
428    pragma Import (C, pthread_attr_setinheritsched);
429
430    function pthread_attr_setschedpolicy
431      (attr   : access pthread_attr_t;
432       policy : int) return int;
433    pragma Import (C, pthread_attr_setschedpolicy);
434
435    function sched_yield return int;
436    pragma Import (C, sched_yield, "sched_yield");
437
438    --------------------------
439    -- P1003.1c  Section 16 --
440    --------------------------
441
442    function pthread_attr_init (attributes : access pthread_attr_t) return int;
443    pragma Import (C, pthread_attr_init, "pthread_attr_init");
444
445    function pthread_attr_destroy
446      (attributes : access pthread_attr_t) return int;
447    pragma Import (C, pthread_attr_destroy, "pthread_attr_destroy");
448
449    function pthread_attr_setdetachstate
450      (attr        : access pthread_attr_t;
451       detachstate : int) return int;
452    pragma Import (C, pthread_attr_setdetachstate);
453
454    function pthread_attr_setstacksize
455      (attr      : access pthread_attr_t;
456       stacksize : size_t) return int;
457    pragma Import (C, pthread_attr_setstacksize);
458
459    function pthread_create
460      (thread        : access pthread_t;
461       attributes    : access pthread_attr_t;
462       start_routine : Thread_Body;
463       arg           : System.Address) return int;
464    pragma Import (C, pthread_create, "pthread_create");
465
466    procedure pthread_exit (status : System.Address);
467    pragma Import (C, pthread_exit, "pthread_exit");
468
469    function pthread_self return pthread_t;
470    pragma Import (C, pthread_self, "pthread_self");
471
472    --------------------------
473    -- POSIX.1c  Section 17 --
474    --------------------------
475
476    function st_setspecific
477      (key   : pthread_key_t;
478       value : System.Address) return int;
479    pragma Import (C, st_setspecific, "st_setspecific");
480
481    function st_getspecific
482      (key    : pthread_key_t;
483       retval : System.Address) return int;
484    pragma Import (C, st_getspecific, "st_getspecific");
485
486    type destructor_pointer is access procedure (arg : System.Address);
487
488    function st_keycreate
489      (destructor : destructor_pointer;
490       key        : access pthread_key_t) return int;
491    pragma Import (C, st_keycreate, "st_keycreate");
492
493 private
494
495    type sigset_t is record
496       X1, X2 : long;
497    end record;
498    pragma Convention (C, sigset_t);
499
500    type pid_t is new long;
501
502    type time_t is new long;
503
504    type timespec is record
505       tv_sec  : time_t;
506       tv_nsec : long;
507    end record;
508    pragma Convention (C, timespec);
509
510    type clockid_t is new unsigned_char;
511    CLOCK_REALTIME : constant clockid_t := 0;
512
513    type st_attr_t is record
514       stksize      : int;
515       prio         : int;
516       inheritsched : int;
517       state        : int;
518       sched        : int;
519       detachstate  : int;
520       guardsize    : int;
521    end record;
522    pragma Convention (C, st_attr_t);
523
524    type pthread_attr_t is record
525       pthread_attr_magic : unsigned;
526       st                 : st_attr_t;
527       pthread_attr_scope : int;
528    end record;
529    pragma Convention (C, pthread_attr_t);
530
531    type pthread_condattr_t is record
532       cv_magic   : unsigned;
533       cv_pshared : unsigned;
534    end record;
535    pragma Convention (C, pthread_condattr_t);
536
537    type pthread_mutexattr_t is record
538       m_flags   : unsigned;
539       m_prio_c  : int;
540       m_pshared : int;
541    end record;
542    pragma Convention (C, pthread_mutexattr_t);
543
544    type tid_t is new short;
545    type pthread_t is new tid_t;
546
547    type block_obj_t is new System.Address;
548    --  typedef struct _block_obj_s {
549    --     struct st_entry *b_head;
550    --  } block_obj_t;
551
552    type pthread_mutex_t is record
553       m_flags      : unsigned;
554       m_owner      : tid_t;
555       m_wait       : block_obj_t;
556       m_prio_c     : int;
557       m_oldprio    : int;
558       m_count      : int;
559       m_referenced : int;
560    end record;
561    pragma Convention (C, pthread_mutex_t);
562    type pthread_mutex_t_ptr is access all pthread_mutex_t;
563
564    type pthread_cond_t is record
565       cv_magic  : unsigned;
566       cv_wait   : block_obj_t;
567       cv_mutex  : pthread_mutex_t_ptr;
568       cv_refcnt : int;
569    end record;
570    pragma Convention (C, pthread_cond_t);
571
572    type pthread_key_t is new int;
573
574 end System.OS_Interface;