MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / include / linux / kthread.h
blob1c65e7a9f186cceee83a1e5e199db44b4260daf2
1 #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>
7 struct task_struct *kthread_create(int (*threadfn)(void *data),
8 void *data,
9 const char namefmt[], ...);
11 /**
12 * kthread_run - create and wake a thread.
13 * @threadfn: the function to run until signal_pending(current).
14 * @data: data ptr for @threadfn.
15 * @namefmt: printf-style name for the thread.
17 * Description: Convenient wrapper for kthread_create() followed by
18 * wake_up_process(). Returns the kthread or ERR_PTR(-ENOMEM).
20 #define kthread_run(threadfn, data, namefmt, ...) \
21 ({ \
22 struct task_struct *__k \
23 = kthread_create(threadfn, data, namefmt, ## __VA_ARGS__); \
24 if (!IS_ERR(__k)) \
25 wake_up_process(__k); \
26 __k; \
29 void kthread_bind(struct task_struct *k, unsigned int cpu);
30 int kthread_stop(struct task_struct *k);
31 int kthread_should_stop(void);
33 #endif /* _LINUX_KTHREAD_H */