taglinefilesource code
who62arch/alpha/kernel/traps.cextern int ptrace_cancel_bpt (struct task_struct *who);
who285drivers/cdrom/cm206.cvoid cm206_timeout(unsigned long who)
who288drivers/cdrom/cm206.cwake_up_interruptible((struct wait_queue **) who);
who36kernel/sys.cstatic int proc_sel(struct task_struct *p, int which, int who)
who40kernel/sys.cif (!who && p == current)
who42kernel/sys.creturn(p->pid == who);
who44kernel/sys.cif (!who)
who45kernel/sys.cwho = current->pgrp;
who46kernel/sys.creturn(p->pgrp == who);
who48kernel/sys.cif (!who)
who49kernel/sys.cwho = current->uid;
who50kernel/sys.creturn(p->uid == who);
who55kernel/sys.casmlinkage int sys_setpriority(int which, int who, int niceval)
who79kernel/sys.cif (!proc_sel(p, which, who))
who101kernel/sys.casmlinkage int sys_getpriority(int which, int who)
who110kernel/sys.cif (!proc_sel(p, which, who))
who770kernel/sys.cint getrusage(struct task_struct *p, int who, struct rusage *ru)
who779kernel/sys.cswitch (who) {
who812kernel/sys.casmlinkage int sys_getrusage(int who, struct rusage *ru)
who814kernel/sys.cif (who != RUSAGE_SELF && who != RUSAGE_CHILDREN)
who816kernel/sys.creturn getrusage(current, who, ru);