Line | |
---|
1 | /* $Id: signal.h,v 1.1.1.1 2003/07/02 13:57:00 eleph Exp $ */
|
---|
2 |
|
---|
3 | #ifndef _LINUX_SIGNAL_H
|
---|
4 | #define _LINUX_SIGNAL_H
|
---|
5 |
|
---|
6 | #include <asm/signal.h>
|
---|
7 |
|
---|
8 | #define signal_pending(p) 0
|
---|
9 |
|
---|
10 | #ifdef __KERNEL__
|
---|
11 |
|
---|
12 | /*
|
---|
13 | * These values of sa_flags are used only by the kernel as part of the
|
---|
14 | * irq handling routines.
|
---|
15 | *
|
---|
16 | * SA_INTERRUPT is also used by the irq handling routines.
|
---|
17 | * SA_SHIRQ is for shared interrupt support on PCI and EISA.
|
---|
18 | */
|
---|
19 | #define SA_PROBE SA_ONESHOT
|
---|
20 | #define SA_SAMPLE_RANDOM SA_RESTART
|
---|
21 | #define SA_SHIRQ 0x04000000
|
---|
22 | #endif
|
---|
23 |
|
---|
24 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.