blob: aabc8a13ba71c7b6f9eab1ddf3842b18800045d4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_KTHREAD_H
2#define _LINUX_KTHREAD_H
3/* Simple interface for creating and stopping kernel threads without mess. */
4#include <linux/err.h>
5#include <linux/sched.h>
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007struct task_struct *kthread_create(int (*threadfn)(void *data),
8 void *data,
Rusty Russelled9559d2008-07-25 12:11:09 +10009 const char namefmt[], ...)
10 __attribute__((format(printf, 3, 4)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12/**
Randy Dunlap9e37bd32006-06-25 05:49:19 -070013 * kthread_run - create and wake a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * @threadfn: the function to run until signal_pending(current).
15 * @data: data ptr for @threadfn.
16 * @namefmt: printf-style name for the thread.
17 *
18 * Description: Convenient wrapper for kthread_create() followed by
Randy Dunlap9e37bd32006-06-25 05:49:19 -070019 * wake_up_process(). Returns the kthread or ERR_PTR(-ENOMEM).
20 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#define kthread_run(threadfn, data, namefmt, ...) \
22({ \
23 struct task_struct *__k \
24 = kthread_create(threadfn, data, namefmt, ## __VA_ARGS__); \
25 if (!IS_ERR(__k)) \
26 wake_up_process(__k); \
27 __k; \
28})
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030void kthread_bind(struct task_struct *k, unsigned int cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070031int kthread_stop(struct task_struct *k);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032int kthread_should_stop(void);
33
Eric W. Biederman73c27992007-05-09 02:34:32 -070034int kthreadd(void *unused);
35extern struct task_struct *kthreadd_task;
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#endif /* _LINUX_KTHREAD_H */