diff options
-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, |