Lines Matching refs:pids
150 void free_pids(struct pid **pids) in free_pids() argument
158 if (pids[tmp]) in free_pids()
159 free_pid(pids[tmp]); in free_pids()
334 &task->signal->pids[type]; in task_pid_ptr()
350 static void __change_pid(struct pid **pids, struct task_struct *task, in __change_pid() argument
368 WARN_ON(pids[type]); in __change_pid()
369 pids[type] = pid; in __change_pid()
372 void detach_pid(struct pid **pids, struct task_struct *task, enum pid_type type) in detach_pid() argument
374 __change_pid(pids, task, type, NULL); in detach_pid()
377 void change_pid(struct pid **pids, struct task_struct *task, enum pid_type type, in change_pid() argument
380 __change_pid(pids, task, type, pid); in change_pid()