Home
last modified time | relevance | path

Searched refs:htable (Results 1 – 1 of 1) sorted by relevance

/linux-2.4.37.9/include/linux/
Dsched.h540 struct task_struct **htable = &pidhash[pid_hashfn(p->pid)]; in hash_pid() local
542 if((p->pidhash_next = *htable) != NULL) in hash_pid()
543 (*htable)->pidhash_pprev = &p->pidhash_next; in hash_pid()
544 *htable = p; in hash_pid()
545 p->pidhash_pprev = htable; in hash_pid()
557 struct task_struct *p, **htable = &pidhash[pid_hashfn(pid)]; in find_task_by_pid() local
559 for(p = *htable; p && p->pid != pid; p = p->pidhash_next) in find_task_by_pid()