|
Last change
on this file since 776 was 679, checked in by David Azarewicz, 5 years ago |
|
Merge changes from Paul's uniaud32next branch.
|
|
File size:
570 bytes
|
| 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 | #include <linux/bitops.h>
|
|---|
| 9 | #include <linux/string.h>
|
|---|
| 10 |
|
|---|
| 11 | #ifdef __KERNEL__
|
|---|
| 12 |
|
|---|
| 13 | /*
|
|---|
| 14 | * These values of sa_flags are used only by the kernel as part of the
|
|---|
| 15 | * irq handling routines.
|
|---|
| 16 | *
|
|---|
| 17 | * SA_INTERRUPT is also used by the irq handling routines.
|
|---|
| 18 | * SA_SHIRQ is for shared interrupt support on PCI and EISA.
|
|---|
| 19 | */
|
|---|
| 20 | #define SA_PROBE SA_ONESHOT
|
|---|
| 21 | #define SA_SAMPLE_RANDOM SA_RESTART
|
|---|
| 22 | #define SA_SHIRQ 0x04000000
|
|---|
| 23 | #endif
|
|---|
| 24 |
|
|---|
| 25 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.