1#ifndef _LINUX_KTHREAD_H
2#define _LINUX_KTHREAD_H
3
4#include <linux/err.h>
5#include <linux/sched.h>
6
7struct task_struct *kthread_create(int (*threadfn)(void *data),
8 void *data,
9 const char namefmt[], ...);
10
11
12
13
14
15
16
17
18
19
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; \
27})
28
29void kthread_bind(struct task_struct *k, unsigned int cpu);
30int kthread_stop(struct task_struct *k);
31int kthread_should_stop(void);
32
33int kthreadd(void *unused);
34extern struct task_struct *kthreadd_task;
35
36#endif
37