mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
Revert the reindentation of struct task's definition from rev 1.4.
Requested by: bde
This commit is contained in:
parent
9869fa1db8
commit
5a994091e0
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=85628
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user