summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2024-05-14 08:26:14 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2024-05-14 08:26:14 +0000
commit0b2f0a72e82fbed299a3659e3e40b36d8171edcd (patch)
treef4db8f6a3dae5812a116f7457cdc1085cf8f314c /sys/kern
parent76e00421546e7134decfe58cbea1bffb4eb5ec85 (diff)
remove prototypes with no matching function
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/kern_task.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/kern/kern_task.c b/sys/kern/kern_task.c
index 38ba22f03d7..c3dcc5f48cc 100644
--- a/sys/kern/kern_task.c
+++ b/sys/kern/kern_task.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_task.c,v 1.34 2023/07/29 06:52:08 anton Exp $ */
+/* $OpenBSD: kern_task.c,v 1.35 2024/05/14 08:26:13 jsg Exp $ */
/*
* Copyright (c) 2013 David Gwynne <dlg@openbsd.org>
@@ -128,8 +128,6 @@ struct taskq *const systqmp = &taskq_sys_mp;
void taskq_init(void); /* called in init_main.c */
void taskq_create_thread(void *);
void taskq_barrier_task(void *);
-int taskq_sleep(const volatile void *, struct mutex *, int,
- const char *, int);
int taskq_next_work(struct taskq *, struct task *);
void taskq_thread(void *);