taglinefilesource code
who77arch/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);
who37kernel/sys.cstatic int proc_sel(struct task_struct *p, int which, int who)
who41kernel/sys.cif (!who && p == current)
who43kernel/sys.creturn(p->pid == who);
who45kernel/sys.cif (!who)
who46kernel/sys.cwho = current->pgrp;
who47kernel/sys.creturn(p->pgrp == who);
who49kernel/sys.cif (!who)
who50kernel/sys.cwho = current->uid;
who51kernel/sys.creturn(p->uid == who);
who56kernel/sys.casmlinkage int sys_setpriority(int which, int who, int niceval)
who80kernel/sys.cif (!proc_sel(p, which, who))
who102kernel/sys.casmlinkage int sys_getpriority(int which, int who)
who111kernel/sys.cif (!proc_sel(p, which, who))
who786kernel/sys.cint getrusage(struct task_struct *p, int who, struct rusage *ru)
who795kernel/sys.cswitch (who) {
who828kernel/sys.casmlinkage int sys_getrusage(int who, struct rusage *ru)
who830kernel/sys.cif (who != RUSAGE_SELF && who != RUSAGE_CHILDREN)
who832kernel/sys.creturn getrusage(current, who, ru);