diff options
author | 2015-12-08 11:48:54 +0000 | |
---|---|---|
committer | 2015-12-08 11:48:54 +0000 | |
commit | 8b5192334b52efd0486100daebc1136b3c012d5f (patch) | |
tree | 675736034d3b40b691e2c96602b8da2c4ea943cf | |
parent | use struct task_list instead of TAILQ_HEAD(, task) (diff) | |
download | wireguard-openbsd-8b5192334b52efd0486100daebc1136b3c012d5f.tar.xz wireguard-openbsd-8b5192334b52efd0486100daebc1136b3c012d5f.zip |
tweak whitespace in struct definition. no functional change.
-rw-r--r-- | sys/kern/kern_task.c | 18 |
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 = { |