1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-01 10:06:57 +03:00

FIx up signal.h for XPG7.

This commit is contained in:
Ulrich Drepper
2010-01-10 18:43:30 -08:00
parent 99d46ae379
commit 33780b6d33
7 changed files with 32 additions and 8 deletions

View File

@ -1,5 +1,5 @@
/* Definitions for Linux/ia64 sigaction.
Copyright (C) 1996, 1997, 2000, 2003 Free Software Foundation, Inc.
Copyright (C) 1996, 1997, 2000, 2003, 2010 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -53,6 +53,8 @@ struct sigaction
#define SA_SIGINFO 0x00000004
#if defined __USE_UNIX98 || defined __USE_MISC
# define SA_ONSTACK 0x08000000 /* Use signal stack by using `sa_restorer'. */
#endif
#if defined __USE_UNIX98 || defined __USE_MISC || defined __USE_XOPEN2K8
# define SA_RESTART 0x10000000 /* Restart syscall on signal return. */
# define SA_NODEFER 0x40000000 /* Don't automatically block the signal
when its handler is being executed. */