1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

opensolaris taskq: some cosmetic changes

- drop trailing whitespace
- remove redundant "extern" from function declarations
- remove unused macro

MFC after:	1 week
This commit is contained in:
Andriy Gapon 2013-11-26 09:10:01 +00:00
parent 3b64bbd285
commit 2dbdedbc46
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=258628
2 changed files with 16 additions and 19 deletions

View File

@ -121,7 +121,7 @@ taskq_dispatch(taskq_t *tq, task_func_t func, void *arg, uint_t flags)
mflag = M_WAITOK;
else
mflag = M_NOWAIT;
/*
/*
* If TQ_FRONT is given, we want higher priority for this task, so it
* can go at the front of the queue.
*/
@ -140,8 +140,6 @@ taskq_dispatch(taskq_t *tq, task_func_t func, void *arg, uint_t flags)
return ((taskqid_t)(void *)task);
}
#define TASKQ_MAGIC 0x74541c
static void
taskq_run_safe(void *arg, int pending __unused)
{
@ -156,7 +154,7 @@ taskq_dispatch_safe(taskq_t *tq, task_func_t func, void *arg, u_int flags,
{
int prio;
/*
/*
* If TQ_FRONT is given, we want higher priority for this task, so it
* can go at the front of the queue.
*/

View File

@ -70,24 +70,23 @@ struct proc;
extern taskq_t *system_taskq;
extern void taskq_init(void);
extern void taskq_mp_init(void);
void taskq_init(void);
void taskq_mp_init(void);
extern taskq_t *taskq_create(const char *, int, pri_t, int, int, uint_t);
extern taskq_t *taskq_create_instance(const char *, int, int, pri_t, int,
int, uint_t);
extern taskq_t *taskq_create_proc(const char *, int, pri_t, int, int,
taskq_t *taskq_create(const char *, int, pri_t, int, int, uint_t);
taskq_t *taskq_create_instance(const char *, int, int, pri_t, int, int, uint_t);
taskq_t *taskq_create_proc(const char *, int, pri_t, int, int,
struct proc *, uint_t);
extern taskq_t *taskq_create_sysdc(const char *, int, int, int,
taskq_t *taskq_create_sysdc(const char *, int, int, int,
struct proc *, uint_t, uint_t);
extern taskqid_t taskq_dispatch(taskq_t *, task_func_t, void *, uint_t);
extern void nulltask(void *);
extern void taskq_destroy(taskq_t *);
extern void taskq_wait(taskq_t *);
extern void taskq_suspend(taskq_t *);
extern int taskq_suspended(taskq_t *);
extern void taskq_resume(taskq_t *);
extern int taskq_member(taskq_t *, kthread_t *);
taskqid_t taskq_dispatch(taskq_t *, task_func_t, void *, uint_t);
void nulltask(void *);
void taskq_destroy(taskq_t *);
void taskq_wait(taskq_t *);
void taskq_suspend(taskq_t *);
int taskq_suspended(taskq_t *);
void taskq_resume(taskq_t *);
int taskq_member(taskq_t *, kthread_t *);
#endif /* _KERNEL */