diff options
author | jhb <jhb@FreeBSD.org> | 2001-10-28 16:19:34 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2001-10-28 16:19:34 +0000 |
commit | 8d090c3143e2988a5fbbfa861696ba00ebc1bbe2 (patch) | |
tree | f027485c2812a8094efcc549e8a0da5adf5341ed | |
parent | 63c9c8e607b12d6767e44803e6f31c6ab1a1dc5c (diff) | |
download | FreeBSD-src-8d090c3143e2988a5fbbfa861696ba00ebc1bbe2.zip FreeBSD-src-8d090c3143e2988a5fbbfa861696ba00ebc1bbe2.tar.gz |
Revert the reindentation of struct task's definition from rev 1.4.
Requested by: bde
-rw-r--r-- | sys/sys/taskqueue.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/sys/taskqueue.h b/sys/sys/taskqueue.h index 406a715..4cad2dc 100644 --- a/sys/sys/taskqueue.h +++ b/sys/sys/taskqueue.h @@ -56,10 +56,10 @@ typedef void (*taskqueue_enqueue_fn)(void *context); struct task { STAILQ_ENTRY(task) ta_link; /* link for queue */ - int ta_pending; /* count times queued */ - int ta_priority; /* priority of task in queue */ - task_fn_t *ta_func; /* task handler */ - void *ta_context; /* argument for handler */ + int ta_pending; /* count times queued */ + int ta_priority; /* priority of task in queue */ + task_fn_t *ta_func; /* task handler */ + void *ta_context; /* argument for handler */ }; struct taskqueue *taskqueue_create(const char *name, int mflags, |