dect
/
linux-2.6
Archived
13
0
Fork 0

proc/base.c: Use task_is_*

Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
This commit is contained in:
Matthew Wilcox 2007-12-06 11:04:01 -05:00 committed by Matthew Wilcox
parent 1587e2b188
commit 6d8982d9b8
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ static int proc_root_link(struct inode *inode, struct dentry **dentry, struct vf
(task == current || \
(task->parent == current && \
(task->ptrace & PT_PTRACED) && \
(task->state == TASK_STOPPED || task->state == TASK_TRACED) && \
(task_is_stopped_or_traced(task)) && \
security_ptrace(current,task) == 0))
static int proc_pid_cmdline(struct task_struct *task, char * buffer)