Rev 629 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
629 | giacomo | 1 | #ifndef __NOTIFIER__ |
2 | #define __NOTIFIER__ |
||
3 | |||
4 | #include <linux/compatib.h> |
||
1689 | fabio | 5 | #include <arch/sys/cdefs.h> |
629 | giacomo | 6 | |
7 | __BEGIN_DECLS |
||
8 | |||
9 | struct notifier_block |
||
10 | { |
||
11 | int (*notifier_call)(struct notifier_block *this, unsigned long, void *); |
||
12 | struct notifier_block *next; |
||
13 | int priority; |
||
14 | }; |
||
15 | |||
16 | __END_DECLS |
||
17 | |||
18 | #endif |