Rev 1618 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
#ifndef __NOTIFIER__
#define __NOTIFIER__
#include <linux/compatib.h>
#include <arch/sys/cdefs.h>
__BEGIN_DECLS
struct notifier_block
{
int (*notifier_call)(struct notifier_block *this, unsigned long, void *);
struct notifier_block *next;
int priority;
};
__END_DECLS
#endif