Subversion Repositories shark

Rev

Rev 3 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 pj 1
#ifndef __NOTIFIER__
2
#define __NOTIFIER__
3
 
4
#include <linux/compatib.h>
80 pj 5
#include "ll/sys/cdefs.h"
2 pj 6
 
80 pj 7
__BEGIN_DECLS
8
 
2 pj 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
 
80 pj 16
__END_DECLS
17
 
2 pj 18
#endif