1 /****************************************************************************
3 * GNAT COMPILER COMPONENTS *
7 * C Implementation File *
9 * Copyright (C) 1992-2018, Free Software Foundation, Inc. *
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. *
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. *
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/>. *
27 * GNAT was originally developed by the GNAT team at New York University. *
28 * Extensive contributions were provided by Ada Core Technologies Inc. *
30 ****************************************************************************/
32 /* This file contains system dependent symbols that are referenced in the
33 GNAT Run Time Library */
37 #if ! defined (VTHREADS)
40 #if ! defined (__RTP__) && (! defined (VTHREADS) || defined (__VXWORKSMILS__))
43 #include "selectLib.h"
47 # include "vwModNum.h"
69 #if defined (__sun__) && !defined (__vxworks)
70 /* The declaration is present in <time.h> but conditionalized
71 on a couple of macros we don't define. */
72 extern struct tm
*localtime_r(const time_t *, struct tm
*);
77 /* Don't use macros versions of this functions on VxWorks since they cause
78 imcompatible changes in some VxWorks versions */
90 (1) Opening a file with read mode fails if the file does not exist or
93 (2) Opening a file with append mode causes all subsequent writes to the
94 file to be forced to the then current end-of-file, regardless of
95 intervening calls to the fseek function.
97 (3) When a file is opened with update mode, both input and output may be
98 performed on the associated stream. However, output may not be directly
99 followed by input without an intervening call to the fflush function or
100 to a file positioning function (fseek, fsetpos, or rewind), and input
101 may not be directly followed by output without an intervening call to a
102 file positioning function, unless the input operation encounters
105 The other target dependent declarations here are for the three functions
106 __gnat_set_binary_mode, __gnat_set_text_mode and __gnat_set_mode:
108 void __gnat_set_binary_mode (int handle);
109 void __gnat_set_text_mode (int handle);
110 void __gnat_set_mode (int handle, int mode);
112 These functions have no effect in Unix (or similar systems where there is
113 no distinction between binary and text files), but in DOS (and similar
114 systems where text mode does CR/LF translation), these functions allow
115 the mode of the stream with the given handle (fileno can be used to get
116 the handle of a stream) to be changed dynamically. The returned result
117 is 0 if no error occurs and -1 if an error occurs.
119 Finally there is a boolean (character) variable
121 char __gnat_text_translation_required;
123 which is zero (false) in Unix mode, and one (true) in DOS mode, with a
124 true value indicating that text translation is required on text files
125 and that fopen supports the trailing t and b modifiers.
129 #if defined (WINNT) || defined (__CYGWIN__) || defined (__DJGPP__)
131 const char __gnat_text_translation_required
= 1;
134 #define WIN_SETMODE setmode
137 #define WIN_SETMODE _setmode
140 #if defined (__DJGPP__)
142 #define _setmode setmode
143 #endif /* __DJGPP__ */
146 __gnat_set_binary_mode (int handle
)
148 WIN_SETMODE (handle
, O_BINARY
);
152 __gnat_set_text_mode (int handle
)
154 WIN_SETMODE (handle
, O_TEXT
);
157 #if defined (__CYGWIN__) || defined (__DJGPP__)
159 __gnat_set_mode (int handle
, int mode
)
161 /* the values here must be synchronized with
162 System.File_Control_Block.Content_Encodding:
172 case 0 : setmode(handle
, O_BINARY
); break;
173 case 1 : setmode(handle
, O_TEXT
); break;
174 case 2 : setmode(handle
, O_TEXT
); break;
175 case 3 : setmode(handle
, O_TEXT
); break;
176 case 4 : setmode(handle
, O_BINARY
); break;
177 case 5 : setmode(handle
, O_BINARY
); break;
182 __gnat_set_mode (int handle
, int mode
)
184 /* the values here must be synchronized with
185 System.File_Control_Block.Content_Encodding:
195 case 0 : WIN_SETMODE (handle
, _O_BINARY
); break;
196 case 1 : WIN_SETMODE (handle
, __gnat_current_ccs_encoding
); break;
197 case 2 : WIN_SETMODE (handle
, _O_TEXT
); break;
198 case 3 : WIN_SETMODE (handle
, _O_U8TEXT
); break;
199 case 4 : WIN_SETMODE (handle
, _O_WTEXT
); break;
200 case 5 : WIN_SETMODE (handle
, _O_U16TEXT
); break;
208 __gnat_ttyname (int filedes
)
210 extern char *ttyname (int);
212 return ttyname (filedes
);
215 #endif /* __CYGWIN__ */
217 #if defined (__CYGWIN__) || defined (__MINGW32__)
220 int __gnat_is_windows_xp (void);
223 __gnat_is_windows_xp (void)
225 static int is_win_xp
=0, is_win_xp_checked
=0;
227 if (!is_win_xp_checked
)
229 OSVERSIONINFO version
;
231 is_win_xp_checked
= 1;
233 memset (&version
, 0, sizeof (version
));
234 version
.dwOSVersionInfoSize
= sizeof (version
);
236 is_win_xp
= GetVersionEx (&version
)
237 && version
.dwPlatformId
== VER_PLATFORM_WIN32_NT
238 && (version
.dwMajorVersion
> 5
239 || (version
.dwMajorVersion
== 5 && version
.dwMinorVersion
>= 1));
244 /* Get the bounds of the stack. The stack pointer is supposed to be
245 initialized to BASE when a thread is created and the stack can be extended
246 to LIMIT before reaching a guard page.
247 Note: for the main thread, the system automatically extend the stack, so
248 LIMIT is only the current limit. */
251 __gnat_get_stack_bounds (void **base
, void **limit
)
255 /* We know that the first field of the TEB is the TIB. */
256 tib
= (NT_TIB
*)NtCurrentTeb ();
258 *base
= tib
->StackBase
;
259 *limit
= tib
->StackLimit
;
262 #endif /* __CYGWIN__ || __MINGW32__ */
266 /* Return the name of the tty. Under windows there is no name for
267 the tty, so this function, if connected to a tty, returns the generic name
271 __gnat_ttyname (int filedes
)
273 if (isatty (filedes
))
279 #endif /* __MINGW32__ */
283 const char __gnat_text_translation_required
= 0;
285 /* These functions do nothing in non-DOS systems. */
288 __gnat_set_binary_mode (int handle ATTRIBUTE_UNUSED
)
293 __gnat_set_text_mode (int handle ATTRIBUTE_UNUSED
)
298 __gnat_set_mode (int handle ATTRIBUTE_UNUSED
, int mode ATTRIBUTE_UNUSED
)
303 __gnat_ttyname (int filedes
)
305 #if defined (__vxworks)
308 extern char *ttyname (int);
310 return ttyname (filedes
);
311 #endif /* defined (__vxworks) */
315 #if defined (__linux__) || defined (__sun__) \
317 || defined (__MACHTEN__) || defined (__hpux__) || defined (_AIX) \
318 || (defined (__svr4__) && defined (__i386__)) || defined (__Lynx__) \
319 || defined (__CYGWIN__) || defined (__FreeBSD__) || defined (__OpenBSD__) \
320 || defined (__GLIBC__) || defined (__APPLE__) || defined (__DragonFly__) \
325 # include <termios.h>
327 # include <conio.h> /* for getch(), kbhit() */
330 # include <termios.h>
335 /* Implements the common processing for getc_immediate and
336 getc_immediate_nowait. */
338 extern void getc_immediate (FILE *, int *, int *);
339 extern void getc_immediate_nowait (FILE *, int *, int *, int *);
340 extern void getc_immediate_common (FILE *, int *, int *, int *, int);
342 /* Called by Get_Immediate (Foo); */
345 getc_immediate (FILE *stream
, int *ch
, int *end_of_file
)
349 getc_immediate_common (stream
, ch
, end_of_file
, &avail
, 1);
352 /* Called by Get_Immediate (Foo, Available); */
355 getc_immediate_nowait (FILE *stream
, int *ch
, int *end_of_file
, int *avail
)
357 getc_immediate_common (stream
, ch
, end_of_file
, avail
, 0);
360 /* Called by getc_immediate () and getc_immediate_nowait () */
363 getc_immediate_common (FILE *stream
,
367 int waiting ATTRIBUTE_UNUSED
)
369 #if defined (__linux__) || defined (__sun__) \
370 || defined (__CYGWIN32__) || defined (__MACHTEN__) || defined (__hpux__) \
371 || defined (_AIX) || (defined (__svr4__) && defined (__i386__)) \
372 || defined (__Lynx__) || defined (__FreeBSD__) || defined (__OpenBSD__) \
373 || defined (__GLIBC__) || defined (__APPLE__) || defined (__DragonFly__) \
378 int eof_ch
= 4; /* Ctrl-D */
379 int fd
= fileno (stream
);
380 struct termios otermios_rec
, termios_rec
;
384 tcgetattr (fd
, &termios_rec
);
385 memcpy (&otermios_rec
, &termios_rec
, sizeof (struct termios
));
387 /* Set RAW mode, with no echo */
388 termios_rec
.c_lflag
= termios_rec
.c_lflag
& ~ICANON
& ~ECHO
;
390 #if defined (__linux__) || defined (__sun__) \
391 || defined (__MACHTEN__) || defined (__hpux__) \
392 || defined (_AIX) || (defined (__svr4__) && defined (__i386__)) \
393 || defined (__Lynx__) || defined (__FreeBSD__) || defined (__OpenBSD__) \
394 || defined (__GLIBC__) || defined (__APPLE__) || defined (__DragonFly__) \
396 eof_ch
= termios_rec
.c_cc
[VEOF
];
398 /* If waiting (i.e. Get_Immediate (Char)), set MIN = 1 and wait for
399 a character forever. This doesn't seem to effect Ctrl-Z or
401 If not waiting (i.e. Get_Immediate (Char, Available)),
402 don't wait for anything but timeout immediately. */
403 termios_rec
.c_cc
[VMIN
] = waiting
;
404 termios_rec
.c_cc
[VTIME
] = 0;
406 tcsetattr (fd
, TCSANOW
, &termios_rec
);
410 /* Read is used here instead of fread, because fread doesn't
411 work on Solaris5 and Sunos4 in this situation. Maybe because we
412 are mixing calls that use file descriptors and streams. */
413 nread
= read (fd
, &c
, 1);
416 /* On Unix terminals, Ctrl-D (EOT) is an End of File. */
424 /* Everything else is ok */
425 else if (c
!= eof_ch
)
443 tcsetattr (fd
, TCSANOW
, &otermios_rec
);
448 #elif defined (__MINGW32__)
449 int fd
= fileno (stream
);
451 int eot_ch
= 4; /* Ctrl-D */
468 char_waiting
= kbhit();
470 if (char_waiting
== 1)
488 #elif defined (__vxworks)
489 /* Bit masks of file descriptors to read from. */
490 struct fd_set readFds
;
491 /* Timeout before select returns if nothing can be read. */
492 struct timeval timeOut
;
494 int fd
= fileno (stream
);
503 /* If we do not want to wait, we have to set up fd in RAW mode. This
504 should be done outside this function as setting fd in RAW mode under
505 vxWorks flushes the buffer of fd. If the RAW mode was set here, the
506 buffer would be empty and we would always return that no character
510 /* Initialization of timeOut for its use with select. */
514 /* Initialization of readFds for its use with select;
515 FD is the only file descriptor to be monitored */
517 FD_SET (fd
, &readFds
);
520 /* We do all this processing to emulate a non blocking read. */
521 readable
= select (width
, &readFds
, NULL
, NULL
, &timeOut
);
522 if (readable
== ERROR
)
523 *avail
= -1, *end_of_file
= -1;
524 /* No character available in input. */
525 else if (readable
== 0)
526 *avail
= 0, *end_of_file
= 0;
529 nread
= read (fd
, &c
, 1);
531 *avail
= 1, *end_of_file
= 0;
534 *avail
= 0, *end_of_file
= 1;
537 *avail
= -1, *end_of_file
= -1;
541 /* We have to wait until we get a character */
547 /* Save the current mode of FD. */
548 option
= ioctl (fd
, FIOGETOPTIONS
, 0);
550 /* Set FD in RAW mode. */
551 status
= ioctl (fd
, FIOSETOPTIONS
, OPT_RAW
);
554 nread
= read (fd
, &c
, 1);
556 *avail
= 1, *end_of_file
= 0;
559 *avail
= 0, *end_of_file
= 1;
560 /* Else there is an ERROR. */
563 /* Revert FD to its previous mode. */
564 status
= ioctl (fd
, FIOSETOPTIONS
, option
);
572 /* If we're not on a terminal, then we don't need any fancy processing.
573 Also this is the only thing that's left if we're not on one of the
574 supported systems; which means that for non supported systems,
575 get_immediate may wait for a carriage return on terminals. */
576 *ch
= fgetc (stream
);
590 /* The following definitions are provided in NT to support Windows based
596 /* Provide functions to echo the values passed to WinMain (windows bindings
597 will want to import these). We use the same names as the routines used
598 by AdaMagic for compatibility. */
600 char *rts_get_hInstance (void);
601 char *rts_get_hPrevInstance (void);
602 char *rts_get_lpCommandLine (void);
603 int rts_get_nShowCmd (void);
606 rts_get_hInstance (void)
608 return (char *)GetModuleHandleA (0);
612 rts_get_hPrevInstance (void)
618 rts_get_lpCommandLine (void)
620 return GetCommandLineA ();
624 rts_get_nShowCmd (void)
631 /* This value is returned as the time zone offset when a valid value
632 cannot be determined. It is simply a bizarre value that will never
633 occur. It is 3 days plus 73 seconds (offset is in seconds). */
635 long __gnat_invalid_tzoff
= 259273;
637 /* Definition of __gnat_localtime_r used by a-calend.adb */
639 #if defined (__MINGW32__)
641 /* Reentrant localtime for Windows. */
644 __gnat_localtime_tzoff (const time_t *, const int *, long *);
646 static const unsigned long long w32_epoch_offset
= 11644473600ULL;
648 __gnat_localtime_tzoff (const time_t *timer
, const int *is_historic
, long *off
)
650 TIME_ZONE_INFORMATION tzi
;
654 tzi_status
= GetTimeZoneInformation (&tzi
);
656 /* Cases where we simply want to extract the offset of the current time
657 zone, regardless of the date. A value of "0" for flag "is_historic"
658 signifies that the date is NOT historic, see the
659 body of Ada.Calendar.UTC_Time_Offset. */
661 if (*is_historic
== 0) {
664 /* The system is operating in the range covered by the StandardDate
666 if (tzi_status
== TIME_ZONE_ID_STANDARD
) {
667 *off
= *off
+ tzi
.StandardBias
;
670 /* The system is operating in the range covered by the DaylightDate
672 else if (tzi_status
== TIME_ZONE_ID_DAYLIGHT
) {
673 *off
= *off
+ tzi
.DaylightBias
;
679 /* Time zone offset calculations for a historic or future date */
685 unsigned long long ull_time
;
686 } utc_time
, local_time
;
688 SYSTEMTIME utc_sys_time
, local_sys_time
;
691 /* First convert unix time_t structure to windows FILETIME format. */
692 utc_time
.ull_time
= ((unsigned long long) *timer
+ w32_epoch_offset
)
695 /* If GetTimeZoneInformation does not return a value between 0 and 2 then
696 it means that we were not able to retrieve timezone information. Note
697 that we cannot use here FileTimeToLocalFileTime as Windows will use in
698 always in this case the current timezone setting. As suggested on MSDN
699 we use the following three system calls to get the right information.
700 Note also that starting with Windows Vista new functions are provided
701 to get timezone settings that depend on the year. We cannot use them as
702 we still support Windows XP and Windows 2003. */
704 status
= (tzi_status
>= 0 && tzi_status
<= 2)
705 && FileTimeToSystemTime (&utc_time
.ft_time
, &utc_sys_time
)
706 && SystemTimeToTzSpecificLocalTime (&tzi
, &utc_sys_time
, &local_sys_time
)
707 && SystemTimeToFileTime (&local_sys_time
, &local_time
.ft_time
);
709 /* An error has occurred, return invalid_tzoff */
712 *off
= __gnat_invalid_tzoff
;
715 if (local_time
.ull_time
> utc_time
.ull_time
) {
716 *off
= (long) ((local_time
.ull_time
- utc_time
.ull_time
)
720 *off
= - (long) ((utc_time
.ull_time
- local_time
.ull_time
)
727 #elif defined (__Lynx__)
729 /* On Lynx, all time values are treated in GMT */
731 /* As of LynxOS 3.1.0a patch level 040, LynuxWorks changes the
732 prototype to the C library function localtime_r from the POSIX.4
733 Draft 9 to the POSIX 1.c version. Before this change the following
734 spec is required. Only use when ___THREADS_POSIX4ad4__ is defined,
735 the Lynx convention when building against the legacy API. */
738 __gnat_localtime_tzoff (const time_t *, const int *, long *);
741 __gnat_localtime_tzoff (const time_t *timer
, const int *is_historic
, long *off
)
748 /* Other targets except Lynx and Windows provide a standard localtime_r */
750 #define Lock_Task system__soft_links__lock_task
751 extern void (*Lock_Task
) (void);
753 #define Unlock_Task system__soft_links__unlock_task
754 extern void (*Unlock_Task
) (void);
757 __gnat_localtime_tzoff (const time_t *, const int *, long *);
760 __gnat_localtime_tzoff (const time_t *timer ATTRIBUTE_UNUSED
,
761 const int *is_historic ATTRIBUTE_UNUSED
,
762 long *off ATTRIBUTE_UNUSED
)
764 struct tm tp ATTRIBUTE_UNUSED
;
766 /* AIX, HPUX, Sun Solaris */
767 #if defined (_AIX) || defined (__hpux__) || defined (__sun__)
771 localtime_r (timer
, &tp
);
772 *off
= (long) -timezone
;
776 /* Correct the offset if Daylight Saving Time is in effect */
783 #elif defined (__vxworks)
788 localtime_r (timer
, &tp
);
790 /* Try to read the environment variable TIMEZONE. The variable may not have
791 been initialize, in that case return an offset of zero (0) for UTC. */
793 char *tz_str
= getenv ("TIMEZONE");
795 if ((tz_str
== NULL
) || (*tz_str
== '\0'))
799 char *tz_start
, *tz_end
;
801 /* The format of the data contained in TIMEZONE is N::U:S:E where N is the
802 name of the time zone, U are the minutes difference from UTC, S is the
803 start of DST in mmddhh and E is the end of DST in mmddhh. Extracting
804 the value of U involves setting two pointers, one at the beginning and
805 one at the end of the value. The end pointer is then set to null in
806 order to delimit a string slice for atol to process. */
808 tz_start
= index (tz_str
, ':') + 2;
809 tz_end
= index (tz_start
, ':');
812 /* The Ada layer expects an offset in seconds. Note that we must reverse
813 the sign of the result since west is positive and east is negative on
816 *off
= -atol (tz_start
) * 60;
818 /* Correct the offset if Daylight Saving Time is in effect */
827 /* Darwin, Free BSD, Linux, where component tm_gmtoff is present in
830 #elif defined (__APPLE__) || defined (__FreeBSD__) || defined (__linux__) \
831 || defined (__GLIBC__) || defined (__DragonFly__) || defined (__OpenBSD__) \
832 || defined (__DJGPP__) || defined (__QNX__)
834 localtime_r (timer
, &tp
);
838 /* Default: treat all time values in GMT */
843 #endif /* defined(_AIX) ... */
852 /* __gnat_get_task_options is used by s-taprop.adb only for VxWorks. This
853 function returns the options to be set when creating a new task. It fetches
854 the options assigned to the current task (parent), so offering some user
855 level control over the options for a task hierarchy. It forces VX_FP_TASK
856 because it is almost always required. On processors with the SPE
857 category, VX_SPE_TASK should be used instead to enable the SPE. */
858 extern int __gnat_get_task_options (void);
861 __gnat_get_task_options (void)
865 /* Get the options for the task creator */
866 taskOptionsGet (taskIdSelf (), &options
);
868 /* Force VX_FP_TASK or VX_SPE_TASK as needed */
869 #if defined (__SPE__)
870 options
|= VX_SPE_TASK
;
872 options
|= VX_FP_TASK
;
875 /* Mask those bits that are not under user control */
876 #ifdef VX_USR_TASK_OPTIONS
877 /* O810-007, TSR 00043679:
878 Workaround a bug in Vx-7 where VX_DEALLOC_TCB == VX_PRIVATE_UMASK and:
879 - VX_DEALLOC_TCB is an internal option not to be used by users
880 - VX_PRIVATE_UMASK as a user-definable option
881 This leads to VX_USR_TASK_OPTIONS allowing 0x8000 as VX_PRIVATE_UMASK but
882 taskCreate refusing this option (VX_DEALLOC_TCB is not allowed)
884 Note that the same error occurs in both RTP and Kernel mode, but
885 VX_DEALLOC_TCB is not defined in the RTP headers, so we need to
886 explicitely check if VX_PRIVATE_UMASK has value 0x8000
888 # if defined (VX_PRIVATE_UMASK) && (0x8000 == VX_PRIVATE_UMASK)
889 options
&= ~VX_PRIVATE_UMASK
;
891 options
&= VX_USR_TASK_OPTIONS
;
899 __gnat_is_file_not_found_error (int errno_val
) {
903 /* In the case of VxWorks, we also have to take into account various
904 * filesystem-specific variants of this error.
906 #if ! defined (VTHREADS) && (_WRS_VXWORKS_MAJOR < 7)
907 case S_dosFsLib_FILE_NOT_FOUND
:
909 #if ! defined (__RTP__) && (! defined (VTHREADS) || defined (__VXWORKSMILS__))
910 case S_nfsLib_NFSERR_NOENT
:
912 #if defined (__RTP__)
913 /* An RTP can return an NFS file not found, and the NFS bits must
914 first be masked on to check the errno. */
915 case M_nfsStat
| ENOENT
:
925 #if defined (__linux__)
927 /* Note well: If this code is modified, it should be tested by hand,
928 because automated testing doesn't exercise it.
931 /* HAVE_CAPABILITY is supposed to be defined if sys/capability.h exists on the
932 system where this is being compiled. If this macro is defined, we #include
933 the header. Otherwise we have the relevant declarations textually here.
936 #if defined (HAVE_CAPABILITY)
937 #include <sys/capability.h>
940 /* HAVE_CAPABILITY is not defined, so sys/capability.h does might not exist. */
942 typedef struct _cap_struct
*cap_t
;
947 #define CAP_SYS_NICE 23
949 CAP_EFFECTIVE
=0, /* Specifies the effective flag */
950 CAP_PERMITTED
=1, /* Specifies the permitted flag */
951 CAP_INHERITABLE
=2 /* Specifies the inheritable flag */
954 typedef int cap_value_t
;
956 extern cap_t
cap_get_proc(void);
957 extern int cap_get_flag(cap_t
, cap_value_t
, cap_flag_t
, cap_flag_value_t
*);
958 extern int cap_free(void *);
962 /* __gnat_has_cap_sys_nice returns 1 if the current process has the
963 CAP_SYS_NICE capability. This capability is necessary to use the
964 Ceiling_Locking policy. Returns 0 otherwise. Note that this is
965 defined only for Linux.
968 /* Define these as weak symbols, so if support for capabilities is not present,
969 programs can still link. On Ubuntu, support for capabilities can be
970 installed via "sudo apt-get --assume-yes install libcap-dev".
971 In addition, the user must link with "-lcap", or else these
972 symbols will be 0, and __gnat_has_cap_sys_nice will return 0.
975 static cap_t
cap_get_proc_weak(void)
976 __attribute__ ((weakref ("cap_get_proc")));
977 static int cap_get_flag_weak(cap_t
, cap_value_t
, cap_flag_t
, cap_flag_value_t
*)
978 __attribute__ ((weakref ("cap_get_flag")));
979 static int cap_free_weak(void *)
980 __attribute__ ((weakref ("cap_free")));
983 __gnat_has_cap_sys_nice () {
984 /* If the address of cap_get_proc_weak is 0, this means support for
985 capabilities is not present, so we return 0. */
986 if (&cap_get_proc_weak
== 0)
989 cap_t caps
= cap_get_proc_weak();
993 cap_flag_value_t value
;
995 if (cap_get_flag_weak(caps
, CAP_SYS_NICE
, CAP_EFFECTIVE
, &value
) == -1)
998 if (cap_free_weak(caps
) == -1)
1001 if (value
== CAP_SET
)
1010 /* Provide extern symbols for sig* as needed by the tasking run-time, instead
1011 of static inline functions. */
1016 _sigismember (sigset_t
*set
, int signum
)
1018 return sigismember (set
, signum
);
1022 _sigaddset (sigset_t
*set
, int signum
)
1024 return sigaddset (set
, signum
);
1028 _sigdelset (sigset_t
*set
, int signum
)
1030 return sigdelset (set
, signum
);
1034 _sigemptyset (sigset_t
*set
)
1036 return sigemptyset (set
);
1040 _sigfillset (sigset_t
*set
)
1042 return sigfillset (set
);
1049 return getpagesize ();