summaryrefslogtreecommitdiffstats
path: root/include/poller.h
blob: dc981557dbcda4858d82d223a47e74b8a5125c86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * Copyright (C) 2010 Marc Kleine-Budde <mkl@pengutronix.de>
 *
 * This file is released under the GPLv2
 *
 */

#ifndef POLLER_H
#define POLLER_H

#include <linux/list.h>

struct poller_struct {
	void (*func)(struct poller_struct *poller);

	struct list_head list;
};

int poller_register(struct poller_struct *poller);
int poller_unregister(struct poller_struct *poller);


#ifdef CONFIG_POLLER
void poller_call(void);
#else
static inline void poller_call(void)
{
}
#endif	/* CONFIG_POLLER */

#endif	/* !POLLER_H */