aboutsummaryrefslogtreecommitdiff
path: root/include/linux/idle.h
blob: 75bd2a422c84ccfc1bbe80a3d174b7cd2457dc4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * include/linux/idle.h - generic idle definition
 *
 */
#ifndef _LINUX_IDLE_H_
#define _LINUX_IDLE_H_

#include <linux/notifier.h>

enum idle_val {
	IDLE_START = 1,
	IDLE_END = 2,
};

int notify_idle(enum idle_val val);
void register_idle_notifier(struct notifier_block *n);
void unregister_idle_notifier(struct notifier_block *n);

#endif /* _LINUX_IDLE_H_ */