allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / linux / signalfd.h
blob4c9ff0910ae01d39f691a23c9acf5d1db48b06d2
1 /*
2 * include/linux/signalfd.h
4 * Copyright (C) 2007 Davide Libenzi <davidel@xmailserver.org>
6 */
8 #ifndef _LINUX_SIGNALFD_H
9 #define _LINUX_SIGNALFD_H
12 struct signalfd_siginfo {
13 __u32 signo;
14 __s32 err;
15 __s32 code;
16 __u32 pid;
17 __u32 uid;
18 __s32 fd;
19 __u32 tid;
20 __u32 band;
21 __u32 overrun;
22 __u32 trapno;
23 __s32 status;
24 __s32 svint;
25 __u64 svptr;
26 __u64 utime;
27 __u64 stime;
28 __u64 addr;
31 * Pad strcture to 128 bytes. Remember to update the
32 * pad size when you add new memebers. We use a fixed
33 * size structure to avoid compatibility problems with
34 * future versions, and we leave extra space for additional
35 * members. We use fixed size members because this strcture
36 * comes out of a read(2) and we really don't want to have
37 * a compat on read(2).
39 __u8 __pad[48];
43 #ifdef __KERNEL__
45 #ifdef CONFIG_SIGNALFD
48 * Deliver the signal to listening signalfd.
50 static inline void signalfd_notify(struct task_struct *tsk, int sig)
52 if (unlikely(waitqueue_active(&tsk->sighand->signalfd_wqh)))
53 wake_up(&tsk->sighand->signalfd_wqh);
56 #else /* CONFIG_SIGNALFD */
58 static inline void signalfd_notify(struct task_struct *tsk, int sig) { }
60 #endif /* CONFIG_SIGNALFD */
62 #endif /* __KERNEL__ */
64 #endif /* _LINUX_SIGNALFD_H */