Subversion Repositories shark

Rev

Rev 2 | 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>
5
 
6
struct notifier_block
7
{
8
        int (*notifier_call)(struct notifier_block *this, unsigned long, void *);
9
        struct notifier_block *next;
10
        int priority;
11
};
12
 
13
#endif