summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordlg <dlg@openbsd.org>2007-05-31 21:43:02 +0000
committerdlg <dlg@openbsd.org>2007-05-31 21:43:02 +0000
commitce35645e62726e3c8ef15a44cb0921d6ae24ff4a (patch)
tree4896cbcf8db54d46ba7b8ea7a2ea7d804eeeb883
parentadd a manpage for workq stuff. (diff)
downloadwireguard-openbsd-ce35645e62726e3c8ef15a44cb0921d6ae24ff4a.tar.xz
wireguard-openbsd-ce35645e62726e3c8ef15a44cb0921d6ae24ff4a.zip
tedu just moved an argument to workq_add_task
-rw-r--r--share/man/man9/workq_add_task.94
1 files changed, 2 insertions, 2 deletions
diff --git a/share/man/man9/workq_add_task.9 b/share/man/man9/workq_add_task.9
index 6cd5bcd9851..e7ee5ff38c9 100644
--- a/share/man/man9/workq_add_task.9
+++ b/share/man/man9/workq_add_task.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: workq_add_task.9,v 1.1 2007/05/31 21:41:41 dlg Exp $
+.\" $OpenBSD: workq_add_task.9,v 1.2 2007/05/31 21:43:02 dlg Exp $
.\"
.\" Copyright (c) 2007 David Gwynne <dlg@openbsd.org>
.\"
@@ -35,7 +35,7 @@
.Sh SYNOPSIS
.Fd #include <sys/workq.h>
.Ft int
-.Fn "workq_add_task" "struct workq *wq" "void (*func)(void *, void *)" "void *arg1" "void *arg2" "int flags"
+.Fn "workq_add_task" "struct workq *wq" "int flags" "void (*func)(void *, void *)" "void *arg1" "void *arg2"
.Ft struct workq *
.Fn "workq_create" "const char *name" "int maxthreads"
.Ft void