aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/taskqueue.h
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2001-10-28 16:19:34 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2001-10-28 16:19:34 +0000
commit5a994091e0c60ad0de36e26ca2e8c939bf0a75d0 (patch)
treef027485c2812a8094efcc549e8a0da5adf5341ed /sys/sys/taskqueue.h
parent9869fa1db8d7cb2850c5db7e50b870515c72f055 (diff)
downloadsrc-5a994091e0c60ad0de36e26ca2e8c939bf0a75d0.tar.gz
src-5a994091e0c60ad0de36e26ca2e8c939bf0a75d0.zip
Revert the reindentation of struct task's definition from rev 1.4.
Requested by: bde
Notes
Notes: svn path=/head/; revision=85628
Diffstat (limited to 'sys/sys/taskqueue.h')
-rw-r--r--sys/sys/taskqueue.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/sys/taskqueue.h b/sys/sys/taskqueue.h
index 406a715380c4..4cad2dcd54a7 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,