Daily bump.
[official-gcc.git] / gcc / ada / sysdep.c
blobee31840d8d6b8f886a4f8e4fe8569506a4070a99
1 /****************************************************************************
2 * *
3 * GNAT COMPILER COMPONENTS *
4 * *
5 * S Y S D E P *
6 * *
7 * C Implementation File *
8 * *
9 * Copyright (C) 1992-2012, Free Software Foundation, Inc. *
10 * *
11 * GNAT is free software; you can redistribute it and/or modify it under *
12 * terms of the GNU General Public License as published by the Free Soft- *
13 * ware Foundation; either version 3, or (at your option) any later ver- *
14 * sion. GNAT is distributed in the hope that it will be useful, but WITH- *
15 * OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
16 * or FITNESS FOR A PARTICULAR PURPOSE. *
17 * *
18 * As a special exception under Section 7 of GPL version 3, you are granted *
19 * additional permissions described in the GCC Runtime Library Exception, *
20 * version 3.1, as published by the Free Software Foundation. *
21 * *
22 * You should have received a copy of the GNU General Public License and *
23 * a copy of the GCC Runtime Library Exception along with this program; *
24 * see the files COPYING3 and COPYING.RUNTIME respectively. If not, see *
25 * <http://www.gnu.org/licenses/>. *
26 * *
27 * GNAT was originally developed by the GNAT team at New York University. *
28 * Extensive contributions were provided by Ada Core Technologies Inc. *
29 * *
30 ****************************************************************************/
32 /* This file contains system dependent symbols that are referenced in the
33 GNAT Run Time Library */
35 #ifdef __vxworks
36 #include "ioLib.h"
37 #if ! defined (VTHREADS)
38 #include "dosFsLib.h"
39 #endif
40 #if ! defined (__RTP__) && (! defined (VTHREADS) || defined (__VXWORKSMILS__))
41 # include "nfsLib.h"
42 #endif
43 #include "selectLib.h"
44 #include "vxWorks.h"
45 #endif
47 #ifdef IN_RTS
48 #define POSIX
49 #include "tconfig.h"
50 #include "tsystem.h"
51 #include <fcntl.h>
52 #include <sys/stat.h>
53 #ifdef VMS
54 #include <unixio.h>
55 #endif
56 #else
57 #include "config.h"
58 #include "system.h"
59 #endif
61 #include <time.h>
62 #include <errno.h>
64 #if defined (sun) && defined (__SVR4) && !defined (__vxworks)
65 /* The declaration is present in <time.h> but conditionalized
66 on a couple of macros we don't define. */
67 extern struct tm *localtime_r(const time_t *, struct tm *);
68 #endif
70 #include "adaint.h"
72 /* Don't use macros versions of this functions on VxWorks since they cause
73 imcompatible changes in some VxWorks versions */
74 #ifdef __vxworks
75 #undef getchar
76 #undef putchar
77 #undef feof
78 #undef ferror
79 #undef fileno
80 #endif
83 Notes:
85 (1) Opening a file with read mode fails if the file does not exist or
86 cannot be read.
88 (2) Opening a file with append mode causes all subsequent writes to the
89 file to be forced to the then current end-of-file, regardless of
90 intervening calls to the fseek function.
92 (3) When a file is opened with update mode, both input and output may be
93 performed on the associated stream. However, output may not be directly
94 followed by input without an intervening call to the fflush function or
95 to a file positioning function (fseek, fsetpos, or rewind), and input
96 may not be directly followed by output without an intervening call to a
97 file positioning function, unless the input operation encounters
98 end-of-file.
100 The other target dependent declarations here are for the two functions
101 __gnat_set_binary_mode and __gnat_set_text_mode:
103 void __gnat_set_binary_mode (int handle);
104 void __gnat_set_text_mode (int handle);
106 These functions have no effect in Unix (or similar systems where there is
107 no distinction between binary and text files), but in DOS (and similar
108 systems where text mode does CR/LF translation), these functions allow
109 the mode of the stream with the given handle (fileno can be used to get
110 the handle of a stream) to be changed dynamically. The returned result
111 is 0 if no error occurs and -1 if an error occurs.
113 Finally there is a boolean (character) variable
115 char __gnat_text_translation_required;
117 which is zero (false) in Unix mode, and one (true) in DOS mode, with a
118 true value indicating that text translation is required on text files
119 and that fopen supports the trailing t and b modifiers.
123 #if defined (WINNT) || defined (__CYGWIN__)
125 const char __gnat_text_translation_required = 1;
127 #ifdef __CYGWIN__
128 #define WIN_SETMODE setmode
129 #include <io.h>
130 #else
131 #define WIN_SETMODE _setmode
132 #endif
134 void
135 __gnat_set_binary_mode (int handle)
137 WIN_SETMODE (handle, O_BINARY);
140 void
141 __gnat_set_text_mode (int handle)
143 WIN_SETMODE (handle, O_TEXT);
146 #ifdef __CYGWIN__
148 char *
149 __gnat_ttyname (int filedes)
151 extern char *ttyname (int);
153 return ttyname (filedes);
156 #endif /* __CYGWIN__ */
158 #if defined (__CYGWIN__) || defined (__MINGW32__)
159 #include <windows.h>
161 #ifndef RTX
163 int __gnat_is_windows_xp (void);
166 __gnat_is_windows_xp (void)
168 static int is_win_xp=0, is_win_xp_checked=0;
170 if (!is_win_xp_checked)
172 OSVERSIONINFO version;
174 is_win_xp_checked = 1;
176 memset (&version, 0, sizeof (version));
177 version.dwOSVersionInfoSize = sizeof (version);
179 is_win_xp = GetVersionEx (&version)
180 && version.dwPlatformId == VER_PLATFORM_WIN32_NT
181 && (version.dwMajorVersion > 5
182 || (version.dwMajorVersion == 5 && version.dwMinorVersion >= 1));
184 return is_win_xp;
187 #endif /* !RTX */
189 /* Get the bounds of the stack. The stack pointer is supposed to be
190 initialized to BASE when a thread is created and the stack can be extended
191 to LIMIT before reaching a guard page.
192 Note: for the main thread, the system automatically extend the stack, so
193 LIMIT is only the current limit. */
195 void
196 __gnat_get_stack_bounds (void **base, void **limit)
198 NT_TIB *tib;
200 /* We know that the first field of the TEB is the TIB. */
201 tib = (NT_TIB *)NtCurrentTeb ();
203 *base = tib->StackBase;
204 *limit = tib->StackLimit;
207 #endif /* __CYGWIN__ || __MINGW32__ */
209 #ifdef __MINGW32__
211 /* Return the name of the tty. Under windows there is no name for
212 the tty, so this function, if connected to a tty, returns the generic name
213 "console". */
215 char *
216 __gnat_ttyname (int filedes)
218 if (isatty (filedes))
219 return "console";
220 else
221 return NULL;
224 #endif /* __MINGW32__ */
226 #else
228 const char __gnat_text_translation_required = 0;
230 /* These functions do nothing in non-DOS systems. */
232 void
233 __gnat_set_binary_mode (int handle ATTRIBUTE_UNUSED)
237 void
238 __gnat_set_text_mode (int handle ATTRIBUTE_UNUSED)
241 char *
242 __gnat_ttyname (int filedes)
244 #if defined (__vxworks) || defined (__nucleus)
245 return "";
246 #else
247 extern char *ttyname (int);
249 return ttyname (filedes);
250 #endif /* defined (__vxworks) || defined (__nucleus) */
252 #endif
254 #if defined (linux) || defined (sun) \
255 || defined (WINNT) \
256 || defined (__MACHTEN__) || defined (__hpux__) || defined (_AIX) \
257 || (defined (__svr4__) && defined (i386)) || defined (__Lynx__) \
258 || defined (__CYGWIN__) || defined (__FreeBSD__) || defined (__OpenBSD__) \
259 || defined (__GLIBC__) || defined (__APPLE__)
261 # ifdef __MINGW32__
262 # if OLD_MINGW
263 # include <termios.h>
264 # else
265 # include <conio.h> /* for getch(), kbhit() */
266 # endif
267 # else
268 # include <termios.h>
269 # endif
271 #else
272 # if defined (VMS)
273 extern char *decc$ga_stdscr;
274 static int initted = 0;
275 # endif
276 #endif
278 /* Implements the common processing for getc_immediate and
279 getc_immediate_nowait. */
281 extern void getc_immediate (FILE *, int *, int *);
282 extern void getc_immediate_nowait (FILE *, int *, int *, int *);
283 extern void getc_immediate_common (FILE *, int *, int *, int *, int);
285 /* Called by Get_Immediate (Foo); */
287 void
288 getc_immediate (FILE *stream, int *ch, int *end_of_file)
290 int avail;
292 getc_immediate_common (stream, ch, end_of_file, &avail, 1);
295 /* Called by Get_Immediate (Foo, Available); */
297 void
298 getc_immediate_nowait (FILE *stream, int *ch, int *end_of_file, int *avail)
300 getc_immediate_common (stream, ch, end_of_file, avail, 0);
303 /* Called by getc_immediate () and getc_immediate_nowait () */
305 void
306 getc_immediate_common (FILE *stream,
307 int *ch,
308 int *end_of_file,
309 int *avail,
310 int waiting)
312 #if defined (linux) || defined (sun) \
313 || defined (__CYGWIN32__) || defined (__MACHTEN__) || defined (__hpux__) \
314 || defined (_AIX) || (defined (__svr4__) && defined (i386)) \
315 || defined (__Lynx__) || defined (__FreeBSD__) || defined (__OpenBSD__) \
316 || defined (__GLIBC__) || defined (__APPLE__)
317 char c;
318 int nread;
319 int good_one = 0;
320 int eof_ch = 4; /* Ctrl-D */
321 int fd = fileno (stream);
322 struct termios otermios_rec, termios_rec;
324 if (isatty (fd))
326 tcgetattr (fd, &termios_rec);
327 memcpy (&otermios_rec, &termios_rec, sizeof (struct termios));
329 /* Set RAW mode, with no echo */
330 termios_rec.c_lflag = termios_rec.c_lflag & ~ICANON & ~ECHO;
332 #if defined(linux) || defined (sun) \
333 || defined (__MACHTEN__) || defined (__hpux__) \
334 || defined (_AIX) || (defined (__svr4__) && defined (i386)) \
335 || defined (__Lynx__) || defined (__FreeBSD__) || defined (__OpenBSD__) \
336 || defined (__GLIBC__) || defined (__APPLE__)
337 eof_ch = termios_rec.c_cc[VEOF];
339 /* If waiting (i.e. Get_Immediate (Char)), set MIN = 1 and wait for
340 a character forever. This doesn't seem to effect Ctrl-Z or
341 Ctrl-C processing.
342 If not waiting (i.e. Get_Immediate (Char, Available)),
343 don't wait for anything but timeout immediately. */
344 termios_rec.c_cc[VMIN] = waiting;
345 termios_rec.c_cc[VTIME] = 0;
346 #endif
347 tcsetattr (fd, TCSANOW, &termios_rec);
349 while (! good_one)
351 /* Read is used here instead of fread, because fread doesn't
352 work on Solaris5 and Sunos4 in this situation. Maybe because we
353 are mixing calls that use file descriptors and streams. */
354 nread = read (fd, &c, 1);
355 if (nread > 0)
357 /* On Unix terminals, Ctrl-D (EOT) is an End of File. */
358 if (c == eof_ch)
360 *avail = 0;
361 *end_of_file = 1;
362 good_one = 1;
365 /* Everything else is ok */
366 else if (c != eof_ch)
368 *avail = 1;
369 *end_of_file = 0;
370 good_one = 1;
374 else if (! waiting)
376 *avail = 0;
377 *end_of_file = 0;
378 good_one = 1;
380 else
381 good_one = 0;
384 tcsetattr (fd, TCSANOW, &otermios_rec);
385 *ch = c;
388 else
389 #elif defined (VMS)
390 int fd = fileno (stream);
392 if (isatty (fd))
394 if (initted == 0)
396 decc$bsd_initscr ();
397 initted = 1;
400 decc$bsd_cbreak ();
401 *ch = decc$bsd_wgetch (decc$ga_stdscr);
403 if (*ch == 4)
404 *end_of_file = 1;
405 else
406 *end_of_file = 0;
408 *avail = 1;
409 decc$bsd_nocbreak ();
411 else
412 #elif defined (__MINGW32__)
413 int fd = fileno (stream);
414 int char_waiting;
415 int eot_ch = 4; /* Ctrl-D */
417 if (isatty (fd))
419 if (waiting)
421 *ch = getch ();
423 if (*ch == eot_ch)
424 *end_of_file = 1;
425 else
426 *end_of_file = 0;
428 *avail = 1;
430 else /* ! waiting */
432 char_waiting = kbhit();
434 if (char_waiting == 1)
436 *avail = 1;
437 *ch = getch ();
439 if (*ch == eot_ch)
440 *end_of_file = 1;
441 else
442 *end_of_file = 0;
444 else
446 *avail = 0;
447 *end_of_file = 0;
451 else
452 #elif defined (__vxworks)
453 /* Bit masks of file descriptors to read from. */
454 struct fd_set readFds;
455 /* Timeout before select returns if nothing can be read. */
456 struct timeval timeOut;
457 char c;
458 int fd = fileno (stream);
459 int nread;
460 int option;
461 int readable;
462 int status;
463 int width;
465 if (isatty (fd))
467 /* If we do not want to wait, we have to set up fd in RAW mode. This
468 should be done outside this function as setting fd in RAW mode under
469 vxWorks flushes the buffer of fd. If the RAW mode was set here, the
470 buffer would be empty and we would always return that no character
471 is available */
472 if (! waiting)
474 /* Initialization of timeOut for its use with select. */
475 timeOut.tv_sec = 0;
476 timeOut.tv_usec = 0;
478 /* Initialization of readFds for its use with select;
479 FD is the only file descriptor to be monitored */
480 FD_ZERO (&readFds);
481 FD_SET (fd, &readFds);
482 width = 2;
484 /* We do all this processing to emulate a non blocking read. */
485 readable = select (width, &readFds, NULL, NULL, &timeOut);
486 if (readable == ERROR)
487 *avail = -1, *end_of_file = -1;
488 /* No character available in input. */
489 else if (readable == 0)
490 *avail = 0, *end_of_file = 0;
491 else
493 nread = read (fd, &c, 1);
494 if (nread > 0)
495 *avail = 1, *end_of_file = 0;
496 /* End Of File. */
497 else if (nread == 0)
498 *avail = 0, *end_of_file = 1;
499 /* Error. */
500 else
501 *avail = -1, *end_of_file = -1;
505 /* We have to wait until we get a character */
506 else
508 *avail = -1;
509 *end_of_file = -1;
511 /* Save the current mode of FD. */
512 option = ioctl (fd, FIOGETOPTIONS, 0);
514 /* Set FD in RAW mode. */
515 status = ioctl (fd, FIOSETOPTIONS, OPT_RAW);
516 if (status != -1)
518 nread = read (fd, &c, 1);
519 if (nread > 0)
520 *avail = 1, *end_of_file = 0;
521 /* End of file. */
522 else if (nread == 0)
523 *avail = 0, *end_of_file = 1;
524 /* Else there is an ERROR. */
527 /* Revert FD to its previous mode. */
528 status = ioctl (fd, FIOSETOPTIONS, option);
531 *ch = c;
533 else
534 #endif
536 /* If we're not on a terminal, then we don't need any fancy processing.
537 Also this is the only thing that's left if we're not on one of the
538 supported systems; which means that for non supported systems,
539 get_immediate may wait for a carriage return on terminals. */
540 *ch = fgetc (stream);
541 if (feof (stream))
543 *end_of_file = 1;
544 *avail = 0;
546 else
548 *end_of_file = 0;
549 *avail = 1;
554 /* The following definitions are provided in NT to support Windows based
555 Ada programs. */
557 #ifdef WINNT
558 #include <windows.h>
560 /* Provide functions to echo the values passed to WinMain (windows bindings
561 will want to import these). We use the same names as the routines used
562 by AdaMagic for compatibility. */
564 char *rts_get_hInstance (void);
565 char *rts_get_hPrevInstance (void);
566 char *rts_get_lpCommandLine (void);
567 int rts_get_nShowCmd (void);
569 char *
570 rts_get_hInstance (void)
572 return (char *)GetModuleHandleA (0);
575 char *
576 rts_get_hPrevInstance (void)
578 return 0;
581 char *
582 rts_get_lpCommandLine (void)
584 return GetCommandLineA ();
588 rts_get_nShowCmd (void)
590 return 1;
593 #endif /* WINNT */
594 #ifdef VMS
596 /* This gets around a problem with using the old threads library on VMS 7.0. */
598 extern long get_gmtoff (void);
600 long
601 get_gmtoff (void)
603 time_t t;
604 struct tm *ts;
606 t = time ((time_t) 0);
607 ts = localtime (&t);
608 return ts->tm_gmtoff;
610 #endif
612 /* This value is returned as the time zone offset when a valid value
613 cannot be determined. It is simply a bizarre value that will never
614 occur. It is 3 days plus 73 seconds (offset is in seconds). */
616 long __gnat_invalid_tzoff = 259273;
618 /* Definition of __gnat_localtime_r used by a-calend.adb */
620 #if defined (__MINGW32__)
622 #ifdef CERT
624 /* For the Cert run times on native Windows we use dummy functions
625 for locking and unlocking tasks since we do not support multiple
626 threads on this configuration (Cert run time on native Windows). */
628 void dummy (void) {}
630 void (*Lock_Task) () = &dummy;
631 void (*Unlock_Task) () = &dummy;
633 #else
635 #define Lock_Task system__soft_links__lock_task
636 extern void (*Lock_Task) (void);
638 #define Unlock_Task system__soft_links__unlock_task
639 extern void (*Unlock_Task) (void);
641 #endif
643 /* Reentrant localtime for Windows. */
645 extern void
646 __gnat_localtime_tzoff (const time_t *, const int *, long *);
648 static const unsigned long long w32_epoch_offset = 11644473600ULL;
649 void
650 __gnat_localtime_tzoff (const time_t *timer, const int *is_historic, long *off)
652 TIME_ZONE_INFORMATION tzi;
654 BOOL rtx_active;
655 DWORD tzi_status;
657 #ifdef RTX
658 rtx_active = 1;
659 #else
660 rtx_active = 0;
661 #endif
663 (*Lock_Task) ();
665 tzi_status = GetTimeZoneInformation (&tzi);
667 /* Processing for RTX targets or cases where we simply want to extract the
668 offset of the current time zone, regardless of the date. A value of "0"
669 for flag "is_historic" signifies that the date is NOT historic, see the
670 body of Ada.Calendar.UTC_Time_Offset. */
672 if (rtx_active || *is_historic == 0) {
673 *off = tzi.Bias;
675 /* The system is operating in the range covered by the StandardDate
676 member. */
677 if (tzi_status == TIME_ZONE_ID_STANDARD) {
678 *off = *off + tzi.StandardBias;
681 /* The system is operating in the range covered by the DaylightDate
682 member. */
683 else if (tzi_status == TIME_ZONE_ID_DAYLIGHT) {
684 *off = *off + tzi.DaylightBias;
687 *off = *off * -60;
690 /* Time zone offset calculations for a historic or future date */
692 else {
693 union
695 FILETIME ft_time;
696 unsigned long long ull_time;
697 } utc_time, local_time;
699 SYSTEMTIME utc_sys_time, local_sys_time;
700 BOOL status;
702 /* First convert unix time_t structure to windows FILETIME format. */
703 utc_time.ull_time = ((unsigned long long) *timer + w32_epoch_offset)
704 * 10000000ULL;
706 /* If GetTimeZoneInformation does not return a value between 0 and 2 then
707 it means that we were not able to retrieve timezone informations. Note
708 that we cannot use here FileTimeToLocalFileTime as Windows will use in
709 always in this case the current timezone setting. As suggested on MSDN
710 we use the following three system calls to get the right information.
711 Note also that starting with Windows Vista new functions are provided
712 to get timezone settings that depend on the year. We cannot use them as
713 we still support Windows XP and Windows 2003. */
715 status = (tzi_status >= 0 && tzi_status <= 2)
716 && FileTimeToSystemTime (&utc_time.ft_time, &utc_sys_time)
717 && SystemTimeToTzSpecificLocalTime (&tzi, &utc_sys_time, &local_sys_time)
718 && SystemTimeToFileTime (&local_sys_time, &local_time.ft_time);
720 /* An error has occured, return invalid_tzoff */
722 if (!status) {
723 *off = __gnat_invalid_tzoff;
725 else {
726 if (local_time.ull_time > utc_time.ull_time) {
727 *off = (long) ((local_time.ull_time - utc_time.ull_time)
728 / 10000000ULL);
730 else {
731 *off = - (long) ((utc_time.ull_time - local_time.ull_time)
732 / 10000000ULL);
737 (*Unlock_Task) ();
740 #else
742 /* On Lynx, all time values are treated in GMT */
744 #if defined (__Lynx__)
746 /* As of LynxOS 3.1.0a patch level 040, LynuxWorks changes the
747 prototype to the C library function localtime_r from the POSIX.4
748 Draft 9 to the POSIX 1.c version. Before this change the following
749 spec is required. Only use when ___THREADS_POSIX4ad4__ is defined,
750 the Lynx convention when building against the legacy API. */
752 extern void
753 __gnat_localtime_tzoff (const time_t *, const int *, long *);
755 void
756 __gnat_localtime_tzoff (const time_t *timer, const int *is_historic, long *off)
758 *off = 0;
761 #else
763 /* VMS does not need __gnat_localtime_tzoff */
765 #if defined (VMS)
767 /* Other targets except Lynx, VMS and Windows provide a standard localtime_r */
769 #else
771 #define Lock_Task system__soft_links__lock_task
772 extern void (*Lock_Task) (void);
774 #define Unlock_Task system__soft_links__unlock_task
775 extern void (*Unlock_Task) (void);
777 extern void
778 __gnat_localtime_tzoff (const time_t *, const int *, long *);
780 void
781 __gnat_localtime_tzoff (const time_t *timer, const int *is_historic, long *off)
783 struct tm tp;
785 /* AIX, HPUX, Sun Solaris */
786 #if defined (_AIX) || defined (__hpux__) || defined (sun)
788 (*Lock_Task) ();
790 localtime_r (timer, &tp);
791 *off = (long) -timezone;
793 (*Unlock_Task) ();
795 /* Correct the offset if Daylight Saving Time is in effect */
797 if (tp.tm_isdst > 0)
798 *off = *off + 3600;
801 /* VxWorks */
802 #elif defined (__vxworks)
803 #include <stdlib.h>
805 (*Lock_Task) ();
807 localtime_r (timer, &tp);
809 /* Try to read the environment variable TIMEZONE. The variable may not have
810 been initialize, in that case return an offset of zero (0) for UTC. */
812 char *tz_str = getenv ("TIMEZONE");
814 if ((tz_str == NULL) || (*tz_str == '\0'))
815 *off = 0;
816 else
818 char *tz_start, *tz_end;
820 /* The format of the data contained in TIMEZONE is N::U:S:E where N is the
821 name of the time zone, U are the minutes difference from UTC, S is the
822 start of DST in mmddhh and E is the end of DST in mmddhh. Extracting
823 the value of U involves setting two pointers, one at the beginning and
824 one at the end of the value. The end pointer is then set to null in
825 order to delimit a string slice for atol to process. */
827 tz_start = index (tz_str, ':') + 2;
828 tz_end = index (tz_start, ':');
829 tz_end = '\0';
831 /* The Ada layer expects an offset in seconds. Note that we must reverse
832 the sign of the result since west is positive and east is negative on
833 VxWorks targets. */
835 *off = -atol (tz_start) * 60;
837 /* Correct the offset if Daylight Saving Time is in effect */
839 if (tp.tm_isdst > 0)
840 *off = *off + 3600;
843 (*Unlock_Task) ();
846 /* Darwin, Free BSD, Linux, where component tm_gmtoff is present in
847 struct tm */
849 #elif defined (__APPLE__) || defined (__FreeBSD__) || defined (linux) ||\
850 defined (__GLIBC__)
852 localtime_r (timer, &tp);
853 *off = tp.tm_gmtoff;
856 /* Default: treat all time values in GMT */
858 #else
859 *off = 0;
861 #endif
864 #endif
865 #endif
866 #endif
868 #ifdef __vxworks
870 #include <taskLib.h>
872 /* __gnat_get_task_options is used by s-taprop.adb only for VxWorks. This
873 function returns the options to be set when creating a new task. It fetches
874 the options assigned to the current task (parent), so offering some user
875 level control over the options for a task hierarchy. It forces VX_FP_TASK
876 because it is almost always required. On processors with the SPE
877 category, VX_SPE_TASK should be used instead to enable the SPE. */
878 extern int __gnat_get_task_options (void);
881 __gnat_get_task_options (void)
883 int options;
885 /* Get the options for the task creator */
886 taskOptionsGet (taskIdSelf (), &options);
888 /* Force VX_FP_TASK or VX_SPE_TASK as needed */
889 #if defined (__SPE__)
890 options |= VX_SPE_TASK;
891 #else
892 options |= VX_FP_TASK;
893 #endif
895 /* Mask those bits that are not under user control */
896 #ifdef VX_USR_TASK_OPTIONS
897 return options & VX_USR_TASK_OPTIONS;
898 #else
899 return options;
900 #endif
903 #endif
906 __gnat_is_file_not_found_error (int errno_val) {
907 switch (errno_val) {
908 case ENOENT:
909 #ifdef __vxworks
910 /* In the case of VxWorks, we also have to take into account various
911 * filesystem-specific variants of this error.
913 #if ! defined (VTHREADS)
914 case S_dosFsLib_FILE_NOT_FOUND:
915 #endif
916 #if ! defined (__RTP__) && (! defined (VTHREADS) || defined (__VXWORKSMILS__))
917 case S_nfsLib_NFSERR_NOENT:
918 #endif
919 #endif
920 return 1;
922 default:
923 return 0;