Revert the reindentation of struct task's definition from rev 1.4.

Requested by:	bde
This commit is contained in:
John Baldwin 2001-10-28 16:19:34 +00:00
parent 9869fa1db8
commit 5a994091e0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=85628

View File

@ -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,