signal.h (92a3ce4a1e0047215aa0a0b30cc333bd32b866a8) signal.h (574c4866e33d648520a8bd5bf6f573ea6e554e88)
1/*
2 * Modified 1998-2001, 2003
3 * David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co
4 *
5 * Unfortunately, this file is being included by bits/signal.h in
6 * glibc-2.x. Hence the #ifdef __KERNEL__ ugliness.
7 */
8#ifndef _ASM_IA64_SIGNAL_H

--- 12 unchanged lines hidden (view full) ---

21 is taken to make libc match. */
22
23typedef unsigned long old_sigset_t;
24
25typedef struct {
26 unsigned long sig[_NSIG_WORDS];
27} sigset_t;
28
1/*
2 * Modified 1998-2001, 2003
3 * David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co
4 *
5 * Unfortunately, this file is being included by bits/signal.h in
6 * glibc-2.x. Hence the #ifdef __KERNEL__ ugliness.
7 */
8#ifndef _ASM_IA64_SIGNAL_H

--- 12 unchanged lines hidden (view full) ---

21 is taken to make libc match. */
22
23typedef unsigned long old_sigset_t;
24
25typedef struct {
26 unsigned long sig[_NSIG_WORDS];
27} sigset_t;
28
29struct sigaction {
30 __sighandler_t sa_handler;
31 unsigned long sa_flags;
32 sigset_t sa_mask; /* mask last for extensibility */
33};
34
35# include <asm/sigcontext.h>
36
37# endif /* !__ASSEMBLY__ */
38#endif /* _ASM_IA64_SIGNAL_H */
29# include <asm/sigcontext.h>
30
31# endif /* !__ASSEMBLY__ */
32#endif /* _ASM_IA64_SIGNAL_H */