diff options
| author | Andrew Morton <akpm@osdl.org> | 2005-02-14 21:57:16 -0800 |
|---|---|---|
| committer | David S. Miller <davem@nuts.davemloft.net> | 2005-02-14 21:57:16 -0800 |
| commit | 4e9c5abed9f041db9011f04ffbfdf9853c8481ce (patch) | |
| tree | 31d7618e4d3a0e2ff5c14adf28d5f9b8afa0ad7c /include/linux/workqueue.h | |
| parent | 9c0912476f4baed8557845863e9972881865bf1a (diff) | |
[WORKQUEUE]: Add cancel_rearming_delayed_work()
From: Arjan van de Ven <arjan@infradead.org>
cancel_rearming_delayed_workqueue() is only used inside workqueue.c; make
this function static (the more useful wrapper around it later in that
function remains non-static and exported)
Signed-off-by: Arjan van de Ven <arjan@infradead.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/workqueue.h')
| -rw-r--r-- | include/linux/workqueue.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h index d37b664363b1..ff46f537ba9b 100644 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h @@ -70,6 +70,7 @@ extern int current_is_keventd(void); extern int keventd_up(void); extern void init_workqueues(void); +void cancel_rearming_delayed_work(struct work_struct *work); /* * Kill off a pending schedule_delayed_work(). Note that the work callback |
