Subversion Repositories shark

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

#ifndef __NOTIFIER__
#define __NOTIFIER__

#include <linux/compatib.h>

struct notifier_block
{
        int (*notifier_call)(struct notifier_block *this, unsigned long, void *);
        struct notifier_block *next;
        int priority;
};

#endif