diff options
Diffstat (limited to 'vos')
-rw-r--r-- | vos/config.alpha.def | 1 | ||||
-rw-r--r-- | vos/config.alpha.h | 7 | ||||
-rw-r--r-- | vos/config.ga.def | 1 | ||||
-rw-r--r-- | vos/config.ga.h | 7 |
4 files changed, 16 insertions, 0 deletions
diff --git a/vos/config.alpha.def b/vos/config.alpha.def index 7a2093731a..b5d5323f46 100644 --- a/vos/config.alpha.def +++ b/vos/config.alpha.def @@ -230,6 +230,7 @@ $d_sfio='undef' $d_shm='undef' $d_shmatprototype='define' $d_sigaction='undef' +$d_sigprocmask='undef' $d_sigsetjmp='undef' $d_socket='define' $d_sockpair='undef' diff --git a/vos/config.alpha.h b/vos/config.alpha.h index aaeb129cba..51488ab464 100644 --- a/vos/config.alpha.h +++ b/vos/config.alpha.h @@ -1914,6 +1914,13 @@ */ /*#define HAS_SIGACTION /**/ +/* HAS_SIGPROCMASK: + * This symbol, if defined, indicates that sigprocmask + * system call is available to examine or change the signal mask + * of the calling process. + */ +/*#define HAS_SIGPROCMASK /**/ + /* HAS_SIGSETJMP: * This variable indicates to the C program that the sigsetjmp() * routine is available to save the calling process's registers diff --git a/vos/config.ga.def b/vos/config.ga.def index 46cbc202da..51a90a473e 100644 --- a/vos/config.ga.def +++ b/vos/config.ga.def @@ -230,6 +230,7 @@ $d_sfio='undef' $d_shm='undef' $d_shmatprototype='define' $d_sigaction='define' +$d_sigprocmask='define' $d_sigsetjmp='define' $d_socket='define' $d_sockpair='undef' diff --git a/vos/config.ga.h b/vos/config.ga.h index d235ba11ce..5ba21bb7e3 100644 --- a/vos/config.ga.h +++ b/vos/config.ga.h @@ -1926,6 +1926,13 @@ */ #define HAS_SIGACTION /**/ +/* HAS_SIGPROCMASK: + * This symbol, if defined, indicates that sigprocmask + * system call is available to examine or change the signal mask + * of the calling process. + */ +#define HAS_SIGPROCMASK /**/ + /* HAS_SIGSETJMP: * This variable indicates to the C program that the sigsetjmp() * routine is available to save the calling process's registers |