mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-08 03:05:23 +00:00
Use the same _LINUX_SCHED_ prefix nomenclature as the other 29 header guards in include/linux/sched/ do. Signed-off-by: Ingo Molnar <mingo@kernel.org>
14 lines
406 B
C
14 lines
406 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _LINUX_SCHED_VHOST_TASK_H
|
|
#define _LINUX_SCHED_VHOST_TASK_H
|
|
|
|
struct vhost_task;
|
|
|
|
struct vhost_task *vhost_task_create(bool (*fn)(void *), void *arg,
|
|
const char *name);
|
|
void vhost_task_start(struct vhost_task *vtsk);
|
|
void vhost_task_stop(struct vhost_task *vtsk);
|
|
void vhost_task_wake(struct vhost_task *vtsk);
|
|
|
|
#endif /* _LINUX_SCHED_VHOST_TASK_H */
|