Searched refs:tasks (Results 1 - 25 of 39) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/hardware/eicon/
H A Dos_4bri.c154 int tasks = _4bri_is_rev_2_bri_card(a->CardOrdinal) ? 1 : MQ_INSTANCE_COUNT; local
155 int factor = (tasks == 1) ? 1 : 2;
168 DBG_TRC(("SDRAM_LENGTH=%08x, tasks=%d, factor=%d",
169 bar_length[2], tasks, factor))
260 if (tasks > 1) {
301 for (i = 0; i < (tasks - 1); i++) {
314 for (i = 0; i < tasks; i++) {
316 adapter_list[i]->xdi_adapter.tasks = tasks;
321 for (i = 0; i < tasks;
[all...]
H A Ds_4bri.c52 int factor = (IoAdapter->tasks == 1) ? 1 : 2;
394 for ( i = 0 ; i < IoAdapter->tasks; ++i )
468 if (!IoAdapter->tasks) {
469 IoAdapter->tasks = MQ_INSTANCE_COUNT;
477 if (!IoAdapter->tasks) {
478 IoAdapter->tasks = MQ_INSTANCE_COUNT;
480 IoAdapter->MemorySize = (IoAdapter->tasks == 1) ? BRI2_MEMORY_SIZE : MQ2_MEMORY_SIZE;
497 if (!IoAdapter->tasks) {
498 IoAdapter->tasks = MQ_INSTANCE_COUNT;
502 if (IoAdapter->tasks >
[all...]
H A Dio.h220 dword tasks; member in struct:_ISDN_ADAPTER
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
H A Dweb.c101 struct tr_web_task * tasks; member in struct:tr_web
270 task->next = web->tasks;
271 web->tasks = task;
328 web->tasks = NULL;
352 if( ( web->close_mode == TR_WEB_CLOSE_WHEN_IDLE ) && ( web->tasks == NULL ) )
355 /* add tasks from the queue */
357 while( web->tasks != NULL )
360 task = web->tasks;
361 web->tasks = task->next;
405 /* pump completed tasks fro
[all...]
H A Dwebseed.c51 tr_list * tasks; member in struct:tr_webseed
317 return w->tasks != NULL;
325 int want, running_tasks = tr_list_size( w->tasks );
378 tr_list_append( &w->tasks, task );
421 tr_list_remove_data( &w->tasks, t );
452 tr_list_remove_data( &w->tasks, t );
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/scripts/python/
H A Dsched-migration.py98 def __init__(self, tasks = [0], event = RunqueueEventUnknown()):
99 self.tasks = tuple(tasks)
105 if taskState(prev_state) == "R" and next in self.tasks \
106 and prev in self.tasks:
112 next_tasks = list(self.tasks[:])
113 if prev in self.tasks:
125 if old not in self.tasks:
127 next_tasks = [task for task in self.tasks if task != old]
132 if new in self.tasks
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/irda/
H A Dirda_device.c59 static hashbin_t *tasks = NULL; variable
72 tasks = hashbin_new(HB_LOCK);
73 if (tasks == NULL) {
74 IRDA_WARNING("IrDA: Can't allocate tasks hashbin!\n");
96 hashbin_delete(tasks, (FREE_FUNC) __irda_task_delete);
177 hashbin_remove(tasks, (long) task, NULL);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dinit_task.h47 .tasks = { \
131 .tasks = LIST_HEAD_INIT(tsk.tasks), \
H A Dpid.h18 * It refers to individual tasks, process groups, and sessions. While
61 /* lists of tasks that use this pid */
62 struct hlist_head tasks[PIDTYPE_MAX]; member in struct:pid
170 &(pid)->tasks[type], pids[type].node) {
H A Dcgroup.h167 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
168 * a pair (one each for procs, tasks) for each pid namespace that's relevant
196 * necessarily indicate the number of tasks in the cgroup
218 * tasks in this cgroup. Protected by css_set_lock
231 * for tasks); created on demand.
264 * List running through all tasks using this cgroup
267 struct list_head tasks; member in struct:css_set
561 * To iterate across the tasks in a cgroup:
565 * 2) call cgroup_iter_next() to retrieve member tasks until it
H A Dsched.h282 * Only dump TASK_* tasks. (0 for all tasks)
777 #define SD_PREFER_LOCAL 0x0040 /* Prefer to keep tasks local to this domain */
783 #define SD_PREFER_SIBLING 0x1000 /* Prefer to place tasks in a sibling domain */
887 unsigned int cache_nice_tries; /* Leave cache hot tasks for # tries */
1202 struct list_head tasks; member in struct:task_struct
1247 * ptraced is the list of tasks this task is using ptrace on.
1491 * tasks are in the range MAX_RT_PRIO..MAX_PRIO-1. Priority
1706 * tasks can access tsk->flags in readonly mode for example
2080 /* Remove the current tasks stal
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/sunrpc/
H A Dsched.c46 * RPC tasks sit here while waiting for conditions to improve.
106 q = &queue->tasks[task->tk_priority];
108 q = &queue->tasks[queue->maxpriority];
121 * Swapper tasks always get inserted at the head of the queue.
133 list_add(&task->u.tk_wait.list, &queue->tasks[0]);
135 list_add_tail(&task->u.tk_wait.list, &queue->tasks[0]);
196 for (i = 0; i < ARRAY_SIZE(queue->tasks); i++)
197 INIT_LIST_HEAD(&queue->tasks[i]);
303 * By always appending tasks to the list we ensure FIFO behavior.
403 * Service a batch of tasks fro
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/ipc/
H A Dsem.c53 * sleeping tasks and completes any pending operations that can be fulfilled.
54 * Semaphores are actively given to waiting tasks (necessary for FIFO).
433 * @pt: list of tasks to be woken up
437 * could be destroyed already and the tasks can disappear as soon as the
530 * update_queue(sma, semnum): Look for tasks that can be completed.
533 * @pt: list head for the tasks that must be woken up.
538 * The tasks that must be woken up are added to @pt. The return code
613 * @pt: list head of the tasks that must be woken up.
646 * semncnt number of tasks waiting on semval being nonzero
647 * semzcnt number of tasks waitin
707 struct list_head tasks; local
855 struct list_head tasks; local
1300 struct list_head tasks; local
1543 struct list_head tasks; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/oprofile/
H A Dbuffer_sync.c59 list_add(&task->tasks, &dying_tasks);
434 /* Move tasks along towards death. Any tasks on dead_tasks
454 list_for_each_entry_safe(task, ttask, &local_dead_tasks, tasks) {
455 list_del(&task->tasks);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Dpid.c8 * pid-structures are backing objects for tasks sharing a given ID to chain
10 * parking tasks using given ID's on a list.
304 INIT_HLIST_HEAD(&pid->tasks[type]);
356 hlist_add_head_rcu(&link->node, &pid->tasks[type]);
373 if (!hlist_empty(&pid->tasks[tmp]))
404 first = rcu_dereference_check(pid->tasks[type].first,
H A Dcgroup.c124 * single cgroup, and all tasks are part of that cgroup.
202 /* This flag indicates whether tasks in the fork and exit paths should
296 * chain of tasks off each css_set. Nests outside task->alloc_lock
620 INIT_LIST_HEAD(&res->tasks);
695 * means that no tasks are currently attached, therefore there is no
711 * A cgroup can only be deleted if both its 'count' of using tasks
713 * tasks in the system use _some_ cgroup, and since there is always at
715 * always has either children cgroups and/or using tasks. So we don't
721 * cgroup_attach_task(), which overwrites one tasks cgroup pointer with
731 * update of a tasks cgrou
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/sound/
H A Dcs46xx_dsp_spos.h194 struct dsp_task_descriptor tasks[DSP_MAX_TASK_DESC]; member in struct:dsp_spos_instance
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/
H A Dbuiltin-sched.c81 static struct task_desc **tasks; variable in typeref:struct:task_desc
330 tasks = realloc(tasks, nr_tasks*sizeof(struct task_task *));
331 BUG_ON(!tasks);
332 tasks[task->nr] = task;
347 task = tasks[i];
359 task1 = tasks[i];
363 task2 = tasks[j];
499 task = tasks[i];
520 task = tasks[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/pci/cs46xx/
H A Ddsp_spos.c550 snd_iprintf(buffer,"\n%04x %s:\n",ins->tasks[i].address,ins->tasks[i].task_name);
552 for (col = 0,j = 0;j < ins->tasks[i].size; j++,col++) {
558 val = readl(dst + (ins->tasks[i].address + j) * sizeof(u32));
990 strcpy(ins->tasks[ins->ntask].task_name, name);
992 strcpy(ins->tasks[ins->ntask].task_name, "(NULL)");
993 ins->tasks[ins->ntask].address = dest;
994 ins->tasks[ins->ntask].size = size;
997 ins->tasks[ins->ntask].index = ins->ntask;
998 desc = (ins->tasks
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/util/
H A Devent.c36 DIR *tasks; local
84 tasks = opendir(filename);
85 if (tasks == NULL)
88 while (!readdir_r(tasks, &dirent, &next) && next) {
98 closedir(tasks);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/sunrpc/
H A Dsched.h35 struct list_head links; /* Links to related tasks */
45 struct list_head tk_task; /* global list of tasks */
56 * action next procedure for async tasks
77 pid_t tk_owner; /* Process id for batching tasks */
91 /* support walking a list of tasks on a wait queue */
186 struct list_head tasks[RPC_NR_PRIORITY]; /* task queue for each priority level */ member in struct:rpc_wait_queue
191 unsigned char nr; /* # tasks remaining for cookie */
192 unsigned short qlen; /* total # tasks waiting in queue */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dtexcept.tex42 in your wxApp-derived class to perform any clean up tasks. Note, however, that
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/common/
H A Dpl330.c333 struct tasklet_struct tasks; member in struct:pl330_dmac
1501 tasklet_schedule(&pl330->tasks);
1909 tasklet_init(&pl330->tasks, pl330_dotask, (unsigned long) pl330);
1958 tasklet_kill(&pl330->tasks);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/arch-v10/kernel/
H A Dentry.S300 add.d $r12, $r10 ; r10 = current tasks tss
314 add.d $r12, $r11 ; find the new tasks tss
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/arch-v32/kernel/
H A Dentry.S350 add.d $r12, $r10 ; R10 = current tasks tss.
369 add.d $r12, $r11 ; Find the new tasks tss.

Completed in 489 milliseconds

12