OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [ada/] [s-osinte-darwin.ads] - Blame information for rev 384

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 281 jeremybenn
------------------------------------------------------------------------------
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-2009, 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 Darwin pthreads version of this package
36
 
37
--  This package includes all direct interfaces to OS services that are needed
38
--  by the tasking run-time (libgnarl).
39
 
40
--  PLEASE DO NOT add any with-clauses to this package or remove the pragma
41
--  Elaborate_Body. It is designed to be a bottom-level (leaf) package.
42
 
43
with Interfaces.C;
44
with System.OS_Constants;
45
 
46
package System.OS_Interface is
47
   pragma Preelaborate;
48
 
49
   subtype int            is Interfaces.C.int;
50
   subtype short          is Interfaces.C.short;
51
   subtype long           is Interfaces.C.long;
52
   subtype unsigned       is Interfaces.C.unsigned;
53
   subtype unsigned_short is Interfaces.C.unsigned_short;
54
   subtype unsigned_long  is Interfaces.C.unsigned_long;
55
   subtype unsigned_char  is Interfaces.C.unsigned_char;
56
   subtype plain_char     is Interfaces.C.plain_char;
57
   subtype size_t         is Interfaces.C.size_t;
58
 
59
   -----------
60
   -- Errno --
61
   -----------
62
 
63
   function errno return int;
64
   pragma Import (C, errno, "__get_errno");
65
 
66
   EINTR     : constant := 4;
67
   ENOMEM    : constant := 12;
68
   EINVAL    : constant := 22;
69
   EAGAIN    : constant := 35;
70
   ETIMEDOUT : constant := 60;
71
 
72
   -------------
73
   -- Signals --
74
   -------------
75
 
76
   Max_Interrupt : constant := 31;
77
   type Signal is new int range 0 .. Max_Interrupt;
78
   for Signal'Size use int'Size;
79
 
80
   SIGHUP     : constant := 1; --  hangup
81
   SIGINT     : constant := 2; --  interrupt (rubout)
82
   SIGQUIT    : constant := 3; --  quit (ASCD FS)
83
   SIGILL     : constant := 4; --  illegal instruction (not reset)
84
   SIGTRAP    : constant := 5; --  trace trap (not reset)
85
   SIGIOT     : constant := 6; --  IOT instruction
86
   SIGABRT    : constant := 6; --  used by abort, replace SIGIOT in the  future
87
   SIGEMT     : constant := 7; --  EMT instruction
88
   SIGFPE     : constant := 8; --  floating point exception
89
   SIGKILL    : constant := 9; --  kill (cannot be caught or ignored)
90
   SIGBUS     : constant := 10; --  bus error
91
   SIGSEGV    : constant := 11; --  segmentation violation
92
   SIGSYS     : constant := 12; --  bad argument to system call
93
   SIGPIPE    : constant := 13; --  write on a pipe with no one to read it
94
   SIGALRM    : constant := 14; --  alarm clock
95
   SIGTERM    : constant := 15; --  software termination signal from kill
96
   SIGURG     : constant := 16; --  urgent condition on IO channel
97
   SIGSTOP    : constant := 17; --  stop (cannot be caught or ignored)
98
   SIGTSTP    : constant := 18; --  user stop requested from tty
99
   SIGCONT    : constant := 19; --  stopped process has been continued
100
   SIGCHLD    : constant := 20; --  child status change
101
   SIGTTIN    : constant := 21; --  background tty read attempted
102
   SIGTTOU    : constant := 22; --  background tty write attempted
103
   SIGIO      : constant := 23; --  I/O possible (Solaris SIGPOLL alias)
104
   SIGXCPU    : constant := 24; --  CPU time limit exceeded
105
   SIGXFSZ    : constant := 25; --  filesize limit exceeded
106
   SIGVTALRM  : constant := 26; --  virtual timer expired
107
   SIGPROF    : constant := 27; --  profiling timer expired
108
   SIGWINCH   : constant := 28; --  window size change
109
   SIGINFO    : constant := 29; --  information request
110
   SIGUSR1    : constant := 30; --  user defined signal 1
111
   SIGUSR2    : constant := 31; --  user defined signal 2
112
 
113
   SIGADAABORT : constant := SIGTERM;
114
   --  Change this if you want to use another signal for task abort.
115
   --  SIGTERM might be a good one.
116
 
117
   type Signal_Set is array (Natural range <>) of Signal;
118
 
119
   Unmasked : constant Signal_Set :=
120
                (SIGTTIN, SIGTTOU, SIGSTOP, SIGTSTP);
121
 
122
   Reserved : constant Signal_Set :=
123
                (SIGKILL, SIGSTOP);
124
 
125
   Exception_Signals : constant Signal_Set :=
126
                         (SIGFPE, SIGILL, SIGSEGV, SIGBUS);
127
   --  These signals (when runtime or system) will be caught and converted
128
   --  into an Ada exception.
129
 
130
   type sigset_t is private;
131
 
132
   function sigaddset (set : access sigset_t; sig : Signal) return int;
133
   pragma Import (C, sigaddset, "sigaddset");
134
 
135
   function sigdelset (set : access sigset_t; sig : Signal) return int;
136
   pragma Import (C, sigdelset, "sigdelset");
137
 
138
   function sigfillset (set : access sigset_t) return int;
139
   pragma Import (C, sigfillset, "sigfillset");
140
 
141
   function sigismember (set : access sigset_t; sig : Signal) return int;
142
   pragma Import (C, sigismember, "sigismember");
143
 
144
   function sigemptyset (set : access sigset_t) return int;
145
   pragma Import (C, sigemptyset, "sigemptyset");
146
 
147
   type siginfo_t is private;
148
   type ucontext_t is private;
149
 
150
   type Signal_Handler is access procedure
151
     (signo   : Signal;
152
      info    : access siginfo_t;
153
      context : access ucontext_t);
154
 
155
   type struct_sigaction is record
156
      sa_handler : System.Address;
157
      sa_mask    : sigset_t;
158
      sa_flags   : int;
159
   end record;
160
   pragma Convention (C, struct_sigaction);
161
   type struct_sigaction_ptr is access all struct_sigaction;
162
 
163
   SIG_BLOCK   : constant := 1;
164
   SIG_UNBLOCK : constant := 2;
165
   SIG_SETMASK : constant := 3;
166
 
167
   SIG_DFL : constant := 0;
168
   SIG_IGN : constant := 1;
169
 
170
   SA_SIGINFO : constant := 16#0040#;
171
   SA_ONSTACK : constant := 16#0001#;
172
 
173
   function sigaction
174
     (sig  : Signal;
175
      act  : struct_sigaction_ptr;
176
      oact : struct_sigaction_ptr) return int;
177
   pragma Import (C, sigaction, "sigaction");
178
 
179
   ----------
180
   -- Time --
181
   ----------
182
 
183
   Time_Slice_Supported : constant Boolean := True;
184
   --  Indicates whether time slicing is supported
185
 
186
   type timespec is private;
187
 
188
   type clockid_t is private;
189
 
190
   CLOCK_REALTIME : constant clockid_t;
191
 
192
   function clock_gettime
193
     (clock_id : clockid_t;
194
      tp       : access timespec) return int;
195
 
196
   function To_Duration (TS : timespec) return Duration;
197
   pragma Inline (To_Duration);
198
 
199
   function To_Timespec (D : Duration) return timespec;
200
   pragma Inline (To_Timespec);
201
 
202
   -------------------------
203
   -- Priority Scheduling --
204
   -------------------------
205
 
206
   SCHED_OTHER : constant := 1;
207
   SCHED_RR    : constant := 2;
208
   SCHED_FIFO  : constant := 4;
209
 
210
   function To_Target_Priority
211
     (Prio : System.Any_Priority) return Interfaces.C.int;
212
   --  Maps System.Any_Priority to a POSIX priority
213
 
214
   -------------
215
   -- Process --
216
   -------------
217
 
218
   type pid_t is private;
219
 
220
   function kill (pid : pid_t; sig : Signal) return int;
221
   pragma Import (C, kill, "kill");
222
 
223
   function getpid return pid_t;
224
   pragma Import (C, getpid, "getpid");
225
 
226
   ---------
227
   -- LWP --
228
   ---------
229
 
230
   function lwp_self return System.Address;
231
   --  Return the mach thread bound to the current thread.  The value is not
232
   --  used by the run-time library but made available to debuggers.
233
 
234
   -------------
235
   -- Threads --
236
   -------------
237
 
238
   type Thread_Body is access
239
     function (arg : System.Address) return System.Address;
240
   pragma Convention (C, Thread_Body);
241
 
242
   type pthread_t           is private;
243
   subtype Thread_Id        is pthread_t;
244
 
245
   type pthread_mutex_t     is limited private;
246
   type pthread_cond_t      is limited private;
247
   type pthread_attr_t      is limited private;
248
   type pthread_mutexattr_t is limited private;
249
   type pthread_condattr_t  is limited private;
250
   type pthread_key_t       is private;
251
 
252
   type pthread_mutex_ptr is access all pthread_mutex_t;
253
   type pthread_cond_ptr is access all pthread_cond_t;
254
 
255
   PTHREAD_CREATE_DETACHED : constant := 2;
256
 
257
   PTHREAD_SCOPE_PROCESS : constant := 2;
258
   PTHREAD_SCOPE_SYSTEM  : constant := 1;
259
 
260
   -----------
261
   -- Stack --
262
   -----------
263
 
264
   type stack_t is record
265
      ss_sp    : System.Address;
266
      ss_size  : size_t;
267
      ss_flags : int;
268
   end record;
269
   pragma Convention (C, stack_t);
270
 
271
   function sigaltstack
272
     (ss  : not null access stack_t;
273
      oss : access stack_t) return int;
274
   pragma Import (C, sigaltstack, "sigaltstack");
275
 
276
   Alternate_Stack : aliased System.Address;
277
   pragma Import (C, Alternate_Stack, "__gnat_alternate_stack");
278
   --  The alternate signal stack for stack overflows
279
 
280
   Alternate_Stack_Size : constant := 32 * 1024;
281
   --  This must be in keeping with init.c:__gnat_alternate_stack
282
 
283
   Stack_Base_Available : constant Boolean := False;
284
   --  Indicates whether the stack base is available on this target. This
285
   --  allows us to share s-osinte.adb between all the FSU run time. Note that
286
   --  this value can only be true if pthread_t has a complete definition that
287
   --  corresponds exactly to the C header files.
288
 
289
   function Get_Stack_Base (thread : pthread_t) return System.Address;
290
   pragma Inline (Get_Stack_Base);
291
   --  returns the stack base of the specified thread. Only call this function
292
   --  when Stack_Base_Available is True.
293
 
294
   function Get_Page_Size return size_t;
295
   function Get_Page_Size return System.Address;
296
   pragma Import (C, Get_Page_Size, "getpagesize");
297
   --  Returns the size of a page
298
 
299
   PROT_NONE  : constant := 0;
300
   PROT_READ  : constant := 1;
301
   PROT_WRITE : constant := 2;
302
   PROT_EXEC  : constant := 4;
303
   PROT_ALL   : constant := PROT_READ + PROT_WRITE + PROT_EXEC;
304
 
305
   PROT_ON    : constant := PROT_NONE;
306
   PROT_OFF   : constant := PROT_ALL;
307
 
308
   function mprotect
309
     (addr : System.Address;
310
      len  : size_t;
311
      prot : int) return int;
312
   pragma Import (C, mprotect);
313
 
314
   ---------------------------------------
315
   -- Nonstandard Thread Initialization --
316
   ---------------------------------------
317
 
318
   procedure pthread_init;
319
 
320
   -------------------------
321
   -- POSIX.1c  Section 3 --
322
   -------------------------
323
 
324
   function sigwait (set : access sigset_t; sig : access Signal) return int;
325
   pragma Import (C, sigwait, "sigwait");
326
 
327
   function pthread_kill (thread : pthread_t; sig : Signal) return int;
328
   pragma Import (C, pthread_kill, "pthread_kill");
329
 
330
   function pthread_sigmask
331
     (how  : int;
332
      set  : access sigset_t;
333
      oset : access sigset_t) return int;
334
   pragma Import (C, pthread_sigmask, "pthread_sigmask");
335
 
336
   --------------------------
337
   -- POSIX.1c  Section 11 --
338
   --------------------------
339
 
340
   function pthread_mutexattr_init
341
     (attr : access pthread_mutexattr_t) return int;
342
   pragma Import (C, pthread_mutexattr_init, "pthread_mutexattr_init");
343
 
344
   function pthread_mutexattr_destroy
345
     (attr : access pthread_mutexattr_t) return int;
346
   pragma Import (C, pthread_mutexattr_destroy, "pthread_mutexattr_destroy");
347
 
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");
352
 
353
   function pthread_mutex_destroy (mutex : access pthread_mutex_t) return int;
354
   pragma Import (C, pthread_mutex_destroy, "pthread_mutex_destroy");
355
 
356
   function pthread_mutex_lock (mutex : access pthread_mutex_t) return int;
357
   pragma Import (C, pthread_mutex_lock, "pthread_mutex_lock");
358
 
359
   function pthread_mutex_unlock (mutex : access pthread_mutex_t) return int;
360
   pragma Import (C, pthread_mutex_unlock, "pthread_mutex_unlock");
361
 
362
   function pthread_condattr_init
363
     (attr : access pthread_condattr_t) return int;
364
   pragma Import (C, pthread_condattr_init, "pthread_condattr_init");
365
 
366
   function pthread_condattr_destroy
367
     (attr : access pthread_condattr_t) return int;
368
   pragma Import (C, pthread_condattr_destroy, "pthread_condattr_destroy");
369
 
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");
374
 
375
   function pthread_cond_destroy (cond : access pthread_cond_t) return int;
376
   pragma Import (C, pthread_cond_destroy, "pthread_cond_destroy");
377
 
378
   function pthread_cond_signal (cond : access pthread_cond_t) return int;
379
   pragma Import (C, pthread_cond_signal, "pthread_cond_signal");
380
 
381
   function pthread_cond_wait
382
     (cond  : access pthread_cond_t;
383
      mutex : access pthread_mutex_t) return int;
384
   pragma Import (C, pthread_cond_wait, "pthread_cond_wait");
385
 
386
   function pthread_cond_timedwait
387
     (cond    : access pthread_cond_t;
388
      mutex   : access pthread_mutex_t;
389
      abstime : access timespec) return int;
390
   pragma Import (C, pthread_cond_timedwait, "pthread_cond_timedwait");
391
 
392
   Relative_Timed_Wait : constant Boolean := False;
393
   --  pthread_cond_timedwait requires an absolute delay time
394
 
395
   --------------------------
396
   -- POSIX.1c  Section 13 --
397
   --------------------------
398
 
399
   PTHREAD_PRIO_NONE    : constant := 0;
400
   PTHREAD_PRIO_INHERIT : constant := 1;
401
   PTHREAD_PRIO_PROTECT : constant := 2;
402
 
403
   function pthread_mutexattr_setprotocol
404
     (attr     : access pthread_mutexattr_t;
405
      protocol : int) return int;
406
   pragma Import
407
     (C, pthread_mutexattr_setprotocol, "pthread_mutexattr_setprotocol");
408
 
409
   function pthread_mutexattr_setprioceiling
410
     (attr     : access pthread_mutexattr_t;
411
      prioceiling : int) return int;
412
   pragma Import
413
     (C, pthread_mutexattr_setprioceiling,
414
      "pthread_mutexattr_setprioceiling");
415
 
416
   type padding is array (int range <>) of Interfaces.C.char;
417
 
418
   type struct_sched_param is record
419
      sched_priority : int;  --  scheduling priority
420
      opaque         : padding (1 .. 4);
421
   end record;
422
   pragma Convention (C, struct_sched_param);
423
 
424
   function pthread_setschedparam
425
     (thread : pthread_t;
426
      policy : int;
427
      param  : access struct_sched_param) return int;
428
   pragma Import (C, pthread_setschedparam, "pthread_setschedparam");
429
 
430
   function pthread_attr_setscope
431
     (attr            : access pthread_attr_t;
432
      contentionscope : int) return int;
433
   pragma Import (C, pthread_attr_setscope, "pthread_attr_setscope");
434
 
435
   function pthread_attr_setinheritsched
436
     (attr            : access pthread_attr_t;
437
      inheritsched : int) return int;
438
   pragma Import
439
     (C, pthread_attr_setinheritsched, "pthread_attr_setinheritsched");
440
 
441
   function pthread_attr_setschedpolicy
442
     (attr   : access pthread_attr_t;
443
      policy : int) return int;
444
   pragma Import (C, pthread_attr_setschedpolicy, "pthread_attr_setsched");
445
 
446
   function sched_yield return int;
447
 
448
   ---------------------------
449
   -- P1003.1c - Section 16 --
450
   ---------------------------
451
 
452
   function pthread_attr_init (attributes : access pthread_attr_t) return int;
453
   pragma Import (C, pthread_attr_init, "pthread_attr_init");
454
 
455
   function pthread_attr_destroy
456
     (attributes : access pthread_attr_t) return int;
457
   pragma Import (C, pthread_attr_destroy, "pthread_attr_destroy");
458
 
459
   function pthread_attr_setdetachstate
460
     (attr        : access pthread_attr_t;
461
      detachstate : int) return int;
462
   pragma Import
463
     (C, pthread_attr_setdetachstate, "pthread_attr_setdetachstate");
464
 
465
   function pthread_attr_setstacksize
466
     (attr      : access pthread_attr_t;
467
      stacksize : size_t) return int;
468
   pragma Import
469
     (C, pthread_attr_setstacksize, "pthread_attr_setstacksize");
470
 
471
   function pthread_create
472
     (thread        : access pthread_t;
473
      attributes    : access pthread_attr_t;
474
      start_routine : Thread_Body;
475
      arg           : System.Address) return int;
476
   pragma Import (C, pthread_create, "pthread_create");
477
 
478
   procedure pthread_exit (status : System.Address);
479
   pragma Import (C, pthread_exit, "pthread_exit");
480
 
481
   function pthread_self return pthread_t;
482
   pragma Import (C, pthread_self, "pthread_self");
483
 
484
   --------------------------
485
   -- POSIX.1c  Section 17 --
486
   --------------------------
487
 
488
   function pthread_setspecific
489
     (key   : pthread_key_t;
490
      value : System.Address) return int;
491
   pragma Import (C, pthread_setspecific, "pthread_setspecific");
492
 
493
   function pthread_getspecific (key : pthread_key_t) return System.Address;
494
   pragma Import (C, pthread_getspecific, "pthread_getspecific");
495
 
496
   type destructor_pointer is access procedure (arg : System.Address);
497
   pragma Convention (C, destructor_pointer);
498
 
499
   function pthread_key_create
500
     (key        : access pthread_key_t;
501
      destructor : destructor_pointer) return int;
502
   pragma Import (C, pthread_key_create, "pthread_key_create");
503
 
504
private
505
 
506
   type sigset_t is new unsigned;
507
 
508
   type int32_t is new int;
509
 
510
   type pid_t is new int32_t;
511
 
512
   type time_t is new long;
513
 
514
   type timespec is record
515
      tv_sec  : time_t;
516
      tv_nsec : long;
517
   end record;
518
   pragma Convention (C, timespec);
519
 
520
   type clockid_t is new int;
521
   CLOCK_REALTIME : constant clockid_t := 0;
522
 
523
   --
524
   --  Darwin specific signal implementation
525
   --
526
   type Pad_Type is array (1 .. 7) of unsigned_long;
527
   type siginfo_t is record
528
      si_signo  : int;               --  signal number
529
      si_errno  : int;               --  errno association
530
      si_code   : int;               --  signal code
531
      si_pid    : int;               --  sending process
532
      si_uid    : unsigned;          --  sender's ruid
533
      si_status : int;               --  exit value
534
      si_addr   : System.Address;    --  faulting instruction
535
      si_value  : System.Address;    --  signal value
536
      si_band   : long;              --  band event for SIGPOLL
537
      pad       : Pad_Type;          --  RFU
538
   end record;
539
   pragma Convention (C, siginfo_t);
540
 
541
   type mcontext_t is new System.Address;
542
 
543
   type ucontext_t is record
544
      uc_onstack  : int;
545
      uc_sigmask  : sigset_t;         --  Signal Mask Used By This Context
546
      uc_stack    : stack_t;          --  Stack Used By This Context
547
      uc_link     : System.Address;   --  Pointer To Resuming Context
548
      uc_mcsize   : size_t;           --  Size of The Machine Context
549
      uc_mcontext : mcontext_t;       --  Machine Specific Context
550
   end record;
551
   pragma Convention (C, ucontext_t);
552
 
553
   --
554
   --  Darwin specific pthread implementation
555
   --
556
   type pthread_t is new System.Address;
557
 
558
   type pthread_attr_t is record
559
      sig    : long;
560
      opaque : padding (1 .. System.OS_Constants.PTHREAD_ATTR_SIZE);
561
   end record;
562
   pragma Convention (C, pthread_attr_t);
563
 
564
   type pthread_mutexattr_t is record
565
      sig    : long;
566
      opaque : padding (1 .. System.OS_Constants.PTHREAD_MUTEXATTR_SIZE);
567
   end record;
568
   pragma Convention (C, pthread_mutexattr_t);
569
 
570
   type pthread_mutex_t is record
571
      sig    : long;
572
      opaque : padding (1 .. System.OS_Constants.PTHREAD_MUTEX_SIZE);
573
   end record;
574
   pragma Convention (C, pthread_mutex_t);
575
 
576
   type pthread_condattr_t is record
577
      sig    : long;
578
      opaque : padding (1 .. System.OS_Constants.PTHREAD_CONDATTR_SIZE);
579
   end record;
580
   pragma Convention (C, pthread_condattr_t);
581
 
582
   type pthread_cond_t is record
583
      sig    : long;
584
      opaque : padding (1 .. System.OS_Constants.PTHREAD_COND_SIZE);
585
   end record;
586
   pragma Convention (C, pthread_cond_t);
587
 
588
   type pthread_once_t is record
589
      sig    : long;
590
      opaque : padding (1 .. System.OS_Constants.PTHREAD_ONCE_SIZE);
591
   end record;
592
   pragma Convention (C, pthread_once_t);
593
 
594
   type pthread_key_t is new unsigned_long;
595
 
596
end System.OS_Interface;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.