summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2015-12-08 11:48:55 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2015-12-08 11:48:55 +0000
commit3a2ee70e05f22906b4c29d35bf8260b0a250d841 (patch)
tree11356a3d0294026d4c52b6f3ff24336e619aabd4 /sys/kern
parentba8ec4142de777227b1c78b861bffc2741190f86 (diff)
tweak whitespace in struct definition. no functional change.
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/kern_task.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/kern/kern_task.c b/sys/kern/kern_task.c
index 6797cfd4e12..6a888be6cb3 100644
--- a/sys/kern/kern_task.c
+++ b/sys/kern/kern_task.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_task.c,v 1.16 2015/12/08 11:44:12 dlg Exp $ */
+/* $OpenBSD: kern_task.c,v 1.17 2015/12/08 11:48:54 dlg Exp $ */
/*
* Copyright (c) 2013 David Gwynne <dlg@openbsd.org>
@@ -30,14 +30,14 @@ struct taskq {
TQ_S_CREATED,
TQ_S_RUNNING,
TQ_S_DESTROYED
- } tq_state;
- unsigned int tq_running;
- unsigned int tq_nthreads;
- unsigned int tq_flags;
- const char *tq_name;
-
- struct mutex tq_mtx;
- struct task_list tq_worklist;
+ } tq_state;
+ unsigned int tq_running;
+ unsigned int tq_nthreads;
+ unsigned int tq_flags;
+ const char *tq_name;
+
+ struct mutex tq_mtx;
+ struct task_list tq_worklist;
};
struct taskq taskq_sys = {