task_work.h 702 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef _LINUX_TASK_WORK_H
#define _LINUX_TASK_WORK_H

#include <linux/list.h>
#include <linux/sched.h>

struct task_work;
typedef void (*task_work_func_t)(struct task_work *);

struct task_work {
	struct hlist_node hlist;
	task_work_func_t func;
};

static inline void
A
Al Viro 已提交
16
init_task_work(struct task_work *twork, task_work_func_t func)
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
{
	twork->func = func;
}

int task_work_add(struct task_struct *task, struct task_work *twork, bool);
struct task_work *task_work_cancel(struct task_struct *, task_work_func_t);
void task_work_run(void);

static inline void exit_task_work(struct task_struct *task)
{
	if (unlikely(!hlist_empty(&task->task_works)))
		task_work_run();
}

#endif	/* _LINUX_TASK_WORK_H */