taglinefilesource code
who63arch/alpha/kernel/traps.cextern int ptrace_cancel_bpt (struct task_struct *who);
who294drivers/block/cm206.cvoid cm206_timeout(unsigned long who)
who297drivers/block/cm206.cwake_up_interruptible((struct wait_queue **) who);
who38kernel/sys.cstatic int proc_sel(struct task_struct *p, int which, int who)
who42kernel/sys.cif (!who && p == current)
who44kernel/sys.creturn(p->pid == who);
who46kernel/sys.cif (!who)
who47kernel/sys.cwho = current->pgrp;
who48kernel/sys.creturn(p->pgrp == who);
who50kernel/sys.cif (!who)
who51kernel/sys.cwho = current->uid;
who52kernel/sys.creturn(p->uid == who);
who57kernel/sys.casmlinkage int sys_setpriority(int which, int who, int niceval)
who70kernel/sys.cif (!*p || !proc_sel(*p, which, who))
who87kernel/sys.casmlinkage int sys_getpriority(int which, int who)
who96kernel/sys.cif (!*p || !proc_sel(*p, which, who))
who752kernel/sys.cint getrusage(struct task_struct *p, int who, struct rusage *ru)
who761kernel/sys.cswitch (who) {
who791kernel/sys.casmlinkage int sys_getrusage(int who, struct rusage *ru)
who793kernel/sys.cif (who != RUSAGE_SELF && who != RUSAGE_CHILDREN)
who795kernel/sys.creturn getrusage(current, who, ru);