summaryrefslogtreecommitdiffstats
path: root/common/poller.c
blob: 0583a532cf6966b9590b835b6bdcf90855932271 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
 * Copyright (C) 2010 Marc Kleine-Budde <mkl@pengutronix.de>
 *
 * This file is released under the GPLv2
 *
 */

#include <common.h>
#include <driver.h>
#include <malloc.h>
#include <module.h>
#include <param.h>
#include <poller.h>

static LIST_HEAD(poller_list);
static int poller_active;

int poller_register(struct poller_struct *poller)
{
	list_add_tail(&poller->list, &poller_list);

	return 0;
}

int poller_unregister(struct poller_struct *poller)
{
	list_del(&poller->list);

	return 0;
}

void poller_call(void)
{
	struct poller_struct *poller, *tmp;

	if (poller_active)
		return;

	poller_active = 1;

	list_for_each_entry_safe(poller, tmp, &poller_list, list)
		poller->func(poller);

	poller_active = 0;
}