- 论坛徽章:
- 0
|
注册通知事件,linux支持的通知事件有以下几种(include/linux/notifier.h):
#define SYS_DOWN 0x0001 /* Notify of system down */
#define SYS_RESTART SYS_DOWN
#define SYS_HALT 0x0002 /* Notify of system halt */
#define SYS_POWER_OFF 0x0003 /* Notify of system power off */
下面给你个参考代码:
static int example_notifier_call(struct notifier_block *this, unsigned long code, void *_cmd)
{
int mode = 0;
if (code == SYS_RESTART)
{
... ...
}
else if (code == SYS_POWER_OFF)
{
... ...
}
return NOTIFY_DONE;
}
static struct notifier_block example_reboot_notifier = {
.notifier_call = example_notifier_call,
};
|
|