Searched refs:thread (Results 1 - 25 of 569) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm/
H A Dasmmacro-64.h16 .macro fpu_save_16even thread tmp=t0
18 sdc1 $f0, THREAD_FPR0(\thread)
19 sdc1 $f2, THREAD_FPR2(\thread)
20 sdc1 $f4, THREAD_FPR4(\thread)
21 sdc1 $f6, THREAD_FPR6(\thread)
22 sdc1 $f8, THREAD_FPR8(\thread)
23 sdc1 $f10, THREAD_FPR10(\thread)
24 sdc1 $f12, THREAD_FPR12(\thread)
25 sdc1 $f14, THREAD_FPR14(\thread)
26 sdc1 $f16, THREAD_FPR16(\thread)
[all...]
H A Dasmmacro-32.h15 .macro fpu_save_double thread status tmp1=t0
17 sdc1 $f0, THREAD_FPR0(\thread)
18 sdc1 $f2, THREAD_FPR2(\thread)
19 sdc1 $f4, THREAD_FPR4(\thread)
20 sdc1 $f6, THREAD_FPR6(\thread)
21 sdc1 $f8, THREAD_FPR8(\thread)
22 sdc1 $f10, THREAD_FPR10(\thread)
23 sdc1 $f12, THREAD_FPR12(\thread)
24 sdc1 $f14, THREAD_FPR14(\thread)
25 sdc1 $f16, THREAD_FPR16(\thread)
[all...]
H A Ddsp.h45 tsk->thread.dsp.dspr[0] = mfhi1(); \
46 tsk->thread.dsp.dspr[1] = mflo1(); \
47 tsk->thread.dsp.dspr[2] = mfhi2(); \
48 tsk->thread.dsp.dspr[3] = mflo2(); \
49 tsk->thread.dsp.dspr[4] = mfhi3(); \
50 tsk->thread.dsp.dspr[5] = mflo3(); \
51 tsk->thread.dsp.dspcontrol = rddsp(DSP_MASK); \
62 mthi1(tsk->thread.dsp.dspr[0]); \
63 mtlo1(tsk->thread.dsp.dspr[1]); \
64 mthi2(tsk->thread
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-mips/
H A Dasmmacro-64.h16 .macro fpu_save_16even thread tmp=t0
18 sdc1 $f0, THREAD_FPR0(\thread)
19 sdc1 $f2, THREAD_FPR2(\thread)
20 sdc1 $f4, THREAD_FPR4(\thread)
21 sdc1 $f6, THREAD_FPR6(\thread)
22 sdc1 $f8, THREAD_FPR8(\thread)
23 sdc1 $f10, THREAD_FPR10(\thread)
24 sdc1 $f12, THREAD_FPR12(\thread)
25 sdc1 $f14, THREAD_FPR14(\thread)
26 sdc1 $f16, THREAD_FPR16(\thread)
[all...]
H A Dasmmacro-32.h15 .macro fpu_save_double thread status tmp1=t0
17 sdc1 $f0, THREAD_FPR0(\thread)
18 sdc1 $f2, THREAD_FPR2(\thread)
19 sdc1 $f4, THREAD_FPR4(\thread)
20 sdc1 $f6, THREAD_FPR6(\thread)
21 sdc1 $f8, THREAD_FPR8(\thread)
22 sdc1 $f10, THREAD_FPR10(\thread)
23 sdc1 $f12, THREAD_FPR12(\thread)
24 sdc1 $f14, THREAD_FPR14(\thread)
25 sdc1 $f16, THREAD_FPR16(\thread)
[all...]
H A Ddsp.h45 tsk->thread.dsp.dspr[0] = mfhi1(); \
46 tsk->thread.dsp.dspr[1] = mflo1(); \
47 tsk->thread.dsp.dspr[2] = mfhi2(); \
48 tsk->thread.dsp.dspr[3] = mflo2(); \
49 tsk->thread.dsp.dspr[4] = mfhi3(); \
50 tsk->thread.dsp.dspr[5] = mflo3(); \
51 tsk->thread.dsp.dspcontrol = rddsp(DSP_MASK); \
62 mthi1(tsk->thread.dsp.dspr[0]); \
63 mtlo1(tsk->thread.dsp.dspr[1]); \
64 mthi2(tsk->thread
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/lib/
H A Dthread.h33 /* Linked list of thread. */
36 struct thread *head;
37 struct thread *tail;
57 struct thread struct
59 unsigned char type; /* thread type */
60 struct thread *next; /* next pointer of the thread */
61 struct thread *prev; /* previous pointer of the thread */
63 int (*func) (struct thread *); /* even
[all...]
H A Dthread.c26 #include "thread.h"
96 /* Allocate new thread master. */
104 /* Add a new thread to the list. */
106 thread_list_add (struct thread_list *list, struct thread *thread)
108 thread->next = NULL;
109 thread->prev = list->tail;
111 list->tail->next = thread;
113 list->head = thread;
114 list->tail = thread;
103 thread_list_add(struct thread_list *list, struct thread *thread) argument
117 thread_list_add_before(struct thread_list *list, struct thread *point, struct thread *thread) argument
133 thread_list_delete(struct thread_list *list, struct thread *thread) argument
150 thread_add_unuse(struct thread_master *m, struct thread *thread) argument
207 thread_timer_remain_second(struct thread *thread) argument
224 struct thread *thread; local
246 struct thread *thread; local
271 struct thread *thread; local
297 struct thread *thread; local
333 struct thread *thread; local
346 thread_cancel(struct thread *thread) argument
380 struct thread *thread; local
464 thread_run(struct thread_master *m, struct thread *thread, struct thread *fetch) argument
477 struct thread *thread; local
504 struct thread *thread; local
590 thread_should_yield(struct thread *thread) argument
606 thread_call(struct thread *thread) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/ospf6d/
H A Dospf6_nsm.h54 int hello_received (struct thread *);
55 int twoway_received (struct thread *);
56 int negotiation_done (struct thread *);
57 int exchange_done (struct thread *);
58 int loading_done (struct thread *);
59 int adj_ok (struct thread *);
60 int seqnumber_mismatch (struct thread *);
61 int bad_lsreq (struct thread *);
62 int oneway_received (struct thread *);
63 int inactivity_timer (struct thread *);
[all...]
H A Dospf6_ism.h41 int interface_up (struct thread *);
42 int interface_down (struct thread *);
43 int wait_timer (struct thread *);
44 int backup_seen (struct thread *);
45 int neighbor_change (struct thread *);
H A Dospf6_nsm.c97 hello_received (struct thread *thread) argument
101 o6n = (struct ospf6_neighbor *) THREAD_ARG (thread);
118 twoway_received (struct thread *thread) argument
122 o6n = (struct ospf6_neighbor *) THREAD_ARG (thread);
151 o6n->thread_rxmt_dbdesc = (struct thread *) NULL;
157 negotiation_done (struct thread *thread) argument
161 o6n = (struct ospf6_neighbor *) THREAD_ARG (thread);
177 exchange_done(struct thread *thread) argument
210 loading_done(struct thread *thread) argument
231 adj_ok(struct thread *thread) argument
277 seqnumber_mismatch(struct thread *thread) argument
309 bad_lsreq(struct thread *thread) argument
341 oneway_received(struct thread *thread) argument
367 inactivity_timer(struct thread *thread) argument
[all...]
H A Dospf6_neighbor.h75 struct thread *inactivity_timer;
78 struct thread *thread_send_dbdesc;
79 struct thread *thread_rxmt_dbdesc;
84 struct thread *thread_send_lsreq;
85 struct thread *thread_rxmt_lsreq;
88 struct thread *send_update;
89 struct thread *thread_send_update;
90 struct thread *thread_rxmt_update;
119 ospf6_neighbor_last_dbdesc_release (struct thread *);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/kernel/skas/
H A Dprocess.c34 switch_threads(&from->thread.mode.skas.switch_buf,
35 &to->thread.mode.skas.switch_buf);
37 arch_switch_to_skas(current->thread.prev_sched, current);
53 if(current->thread.prev_sched != NULL)
54 schedule_tail(current->thread.prev_sched);
55 current->thread.prev_sched = NULL;
57 fn = current->thread.request.u.thread.proc;
58 arg = current->thread.request.u.thread
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/sys-x86_64/
H A Dtls.c10 * If CLONE_SETTLS is set, we need to save the thread id
14 t->thread.arch.fs = t->thread.regs.regs.skas.regs[R8 / sizeof(long)];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/kernel/tt/
H A Duaccess.c14 return(__do_copy_from_user(to, from, n, &current->thread.fault_addr,
15 &current->thread.fault_catcher));
23 return(__do_copy_to_user(to, from, n, &current->thread.fault_addr,
24 &current->thread.fault_catcher));
35 &current->thread.fault_addr,
36 &current->thread.fault_catcher);
44 &current->thread.fault_addr,
45 &current->thread.fault_catcher));
53 return(__do_clear_user(mem, len, &current->thread.fault_addr,
54 &current->thread
[all...]
H A Dprocess_kern.c39 forward_interrupts(to->thread.mode.tt.extern_pid);
41 forward_ipi(cpu_data[cpu].ipi_pipe[0], to->thread.mode.tt.extern_pid);
49 forward_pending_sigio(to->thread.mode.tt.extern_pid);
60 err = os_write_file(to->thread.mode.tt.switch_pipe[1], &c, sizeof(c));
64 if(from->thread.mode.tt.switch_pipe[0] == -1)
67 err = os_read_file(from->thread.mode.tt.switch_pipe[0], &c,
79 prev_sched = current->thread.prev_sched;
80 if(prev_sched->thread.mode.tt.switch_pipe[0] == -1)
81 os_kill_process(prev_sched->thread.mode.tt.extern_pid, 1);
95 int pid = task->thread
318 struct thread_struct *thread; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm/
H A Ddomain.h65 struct thread_info *thread = current_thread_info(); \
66 unsigned int domain = thread->cpu_domain; \
68 thread->cpu_domain = domain | domain_val(dom, type); \
69 set_domain(thread->cpu_domain); \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/h8300/platform/h8s/
H A Dptrace_h8s.c34 return task->thread.usp + sizeof(long)*2 + 2;
37 return *(unsigned short *)(task->thread.esp0 + h8300_register_offset[regno]);
39 return *(unsigned long *)(task->thread.esp0 + h8300_register_offset[regno]);
49 task->thread.usp = data - sizeof(long)*2 - 2;
51 oldccr = *(unsigned short *)(task->thread.esp0 + h8300_register_offset[regno]);
55 *(unsigned short *)(task->thread.esp0 + h8300_register_offset[regno]) = data;
61 *(unsigned long *)(task->thread.esp0 + h8300_register_offset[regno]) = data;
70 *(unsigned short *)(child->thread.esp0 + h8300_register_offset[PT_EXR]) &= ~EXR_TRACE;
76 *(unsigned short *)(child->thread.esp0 + h8300_register_offset[PT_EXR]) |= EXR_TRACE;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/kernel/
H A Dptrace-common.h32 tmp = ((unsigned long *)task->thread.regs)[PT_MSR];
33 tmp |= task->thread.fpexc_mode;
35 tmp = ((unsigned long *)task->thread.regs)[regno];
50 | (task->thread.regs->msr & ~MSR_DEBUGCHANGE);
51 ((unsigned long *)task->thread.regs)[regno] = data;
59 struct pt_regs *regs = task->thread.regs;
67 struct pt_regs *regs = task->thread.regs;
97 if (copy_to_user(data, task->thread.vr, regsize))
103 if (copy_to_user(data, &task->thread.vscr, regsize))
108 if (put_user(task->thread
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/math-emu/
H A Dkernel_linkage.c41 current->thread.fpu.fcr31 = 0;
43 current->thread.fpu.fpr[i] = SIGNALLING_NAN;
61 __put_user(current->thread.fpu.fpr[i], &sc->sc_fpregs[i]);
63 err |= __put_user(current->thread.fpu.fcr31, &sc->sc_fpc_csr);
75 __get_user(current->thread.fpu.fpr[i], &sc->sc_fpregs[i]);
77 err |= __get_user(current->thread.fpu.fcr31, &sc->sc_fpc_csr);
94 __put_user(current->thread.fpu.fpr[i], &sc->sc_fpregs[i]);
96 err |= __put_user(current->thread.fpu.fcr31, &sc->sc_fpc_csr);
108 __get_user(current->thread.fpu.fpr[i], &sc->sc_fpregs[i]);
110 err |= __get_user(current->thread
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/kernel/
H A Dasm-offsets.c113 offset("#define THREAD_REG16 ", struct task_struct, thread.reg16);
114 offset("#define THREAD_REG17 ", struct task_struct, thread.reg17);
115 offset("#define THREAD_REG18 ", struct task_struct, thread.reg18);
116 offset("#define THREAD_REG19 ", struct task_struct, thread.reg19);
117 offset("#define THREAD_REG20 ", struct task_struct, thread.reg20);
118 offset("#define THREAD_REG21 ", struct task_struct, thread.reg21);
119 offset("#define THREAD_REG22 ", struct task_struct, thread.reg22);
120 offset("#define THREAD_REG23 ", struct task_struct, thread.reg23);
121 offset("#define THREAD_REG29 ", struct task_struct, thread.reg29);
122 offset("#define THREAD_REG30 ", struct task_struct, thread
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/kernel/
H A Di387.c32 memset(&current->thread.i387.fxsave, 0, sizeof(struct i387_fxsave_struct));
33 asm volatile("fxsave %0" : : "m" (current->thread.i387.fxsave));
34 mask = current->thread.i387.fxsave.mxcsr_mask;
49 if (offsetof(struct task_struct, thread.i387.fxsave) & 15)
69 memset(&child->thread.i387.fxsave, 0, sizeof(struct i387_fxsave_struct));
70 child->thread.i387.fxsave.cwd = 0x37f;
71 child->thread.i387.fxsave.mxcsr = 0x1f80;
86 sizeof(tsk->thread.i387.fxsave));
99 if (__copy_to_user(buf, &tsk->thread.i387.fxsave,
113 return __copy_to_user(buf, &tsk->thread
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm26/
H A Duaccess-asm.h28 current->thread.uaccess = (fs == USER_DS ? &uaccess_user : &uaccess_kernel);
56 : "r" (x), "r" (addr), "r" (current->thread.uaccess->put_byte), \
69 : "r" (x), "r" (addr), "r" (current->thread.uaccess->put_half), \
82 : "r" (x), "r" (addr), "r" (current->thread.uaccess->put_word), \
95 : "r" (x), "r" (addr), "r" (current->thread.uaccess->put_dword), \
108 : "r" (addr), "r" (current->thread.uaccess->get_byte), "0" (err) \
120 : "r" (addr), "r" (current->thread.uaccess->get_half), "0" (err) \
132 : "r" (addr), "r" (current->thread.uaccess->get_word), "0" (err) \
136 (n) = current->thread.uaccess->copy_from_user((to),(from),(n))
139 (n) = current->thread
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/gfs2/locking/dlm/
H A DMakefile2 lock_dlm-y := lock.o main.o mount.o sysfs.o thread.o plock.o
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-um/
H A Dprocessor-i386.h40 static inline void arch_flush_thread(struct arch_thread *thread) argument
43 memset(&thread->tls_array, 0, sizeof(thread->tls_array));
71 (address + 32 >= UPT_SP(&current->thread.regs.regs))

Completed in 110 milliseconds

1234567891011>>