Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
3e3122a7
Commit
3e3122a7
authored
May 09, 2003
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Plain Diff
Merge greg@deskfan:linux/BK/class-2.5
into kroah.com:/home/greg/linux/BK/class-2.5
parents
cc7218d8
b36c92e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
kernel/signal.c
kernel/signal.c
+3
-2
No files found.
kernel/signal.c
View file @
3e3122a7
...
@@ -1146,6 +1146,7 @@ int
...
@@ -1146,6 +1146,7 @@ int
send_sig_info
(
int
sig
,
struct
siginfo
*
info
,
struct
task_struct
*
p
)
send_sig_info
(
int
sig
,
struct
siginfo
*
info
,
struct
task_struct
*
p
)
{
{
int
ret
;
int
ret
;
unsigned
long
flags
;
/*
/*
* We need the tasklist lock even for the specific
* We need the tasklist lock even for the specific
...
@@ -1154,9 +1155,9 @@ send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
...
@@ -1154,9 +1155,9 @@ send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
* going away or changing from under us.
* going away or changing from under us.
*/
*/
read_lock
(
&
tasklist_lock
);
read_lock
(
&
tasklist_lock
);
spin_lock_irq
(
&
p
->
sighand
->
siglock
);
spin_lock_irq
save
(
&
p
->
sighand
->
siglock
,
flags
);
ret
=
specific_send_sig_info
(
sig
,
info
,
p
);
ret
=
specific_send_sig_info
(
sig
,
info
,
p
);
spin_unlock_irq
(
&
p
->
sighand
->
siglock
);
spin_unlock_irq
restore
(
&
p
->
sighand
->
siglock
,
flags
);
read_unlock
(
&
tasklist_lock
);
read_unlock
(
&
tasklist_lock
);
return
ret
;
return
ret
;
}
}
...
...
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