source: svn/trunk/newcon3bcm2_21bu/toolchain/mipsel-linux-uclibc/include/linux/notifier.h @ 2

Last change on this file since 2 was 2, checked in by phkim, 11 years ago

1.phkim

  1. revision copy newcon3sk r27
  • Property svn:executable set to *
File size: 577 bytes
Line 
1/*
2 *      Routines to manage notifier chains for passing status changes to any
3 *      interested routines. We need this instead of hard coded call lists so
4 *      that modules can poke their nose into the innards. The network devices
5 *      needed them so here they are for the rest of you.
6 *
7 *                              Alan Cox <Alan.Cox@linux.org>
8 */
9 
10#ifndef _LINUX_NOTIFIER_H
11#define _LINUX_NOTIFIER_H
12#include <linux/errno.h>
13
14struct notifier_block
15{
16        int (*notifier_call)(struct notifier_block *self, unsigned long, void *);
17        struct notifier_block *next;
18        int priority;
19};
20
21#endif /* _LINUX_NOTIFIER_H */
Note: See TracBrowser for help on using the repository browser.