Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
6618a3e2
Commit
6618a3e2
authored
Dec 06, 2007
by
Matthew Wilcox
Committed by
Matthew Wilcox
Dec 06, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ptrace: Use task_is_*
Signed-off-by:
Matthew Wilcox
<
willy@linux.intel.com
>
parent
d2f60e5f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
kernel/ptrace.c
kernel/ptrace.c
+4
-4
No files found.
kernel/ptrace.c
View file @
6618a3e2
...
...
@@ -51,7 +51,7 @@ void __ptrace_link(struct task_struct *child, struct task_struct *new_parent)
void
ptrace_untrace
(
struct
task_struct
*
child
)
{
spin_lock
(
&
child
->
sighand
->
siglock
);
if
(
child
->
state
==
TASK_TRACED
)
{
if
(
task_is_traced
(
child
)
)
{
if
(
child
->
signal
->
flags
&
SIGNAL_STOP_STOPPED
)
{
child
->
state
=
TASK_STOPPED
;
}
else
{
...
...
@@ -79,7 +79,7 @@ void __ptrace_unlink(struct task_struct *child)
add_parent
(
child
);
}
if
(
child
->
state
==
TASK_TRACED
)
if
(
task_is_traced
(
child
)
)
ptrace_untrace
(
child
);
}
...
...
@@ -103,9 +103,9 @@ int ptrace_check_attach(struct task_struct *child, int kill)
&&
child
->
signal
!=
NULL
)
{
ret
=
0
;
spin_lock_irq
(
&
child
->
sighand
->
siglock
);
if
(
child
->
state
==
TASK_STOPPED
)
{
if
(
task_is_stopped
(
child
)
)
{
child
->
state
=
TASK_TRACED
;
}
else
if
(
child
->
state
!=
TASK_TRACED
&&
!
kill
)
{
}
else
if
(
!
task_is_traced
(
child
)
&&
!
kill
)
{
ret
=
-
ESRCH
;
}
spin_unlock_irq
(
&
child
->
sighand
->
siglock
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment