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
970f319a
Commit
970f319a
authored
Feb 18, 2003
by
Andrew Morton
Committed by
Linus Torvalds
Feb 18, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] signal warning and uninitialised variable fix
parent
3b66fbb7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
kernel/signal.c
kernel/signal.c
+1
-2
No files found.
kernel/signal.c
View file @
970f319a
...
...
@@ -752,7 +752,7 @@ static int send_signal(int sig, struct siginfo *info, struct sigpending *signals
static
int
specific_send_sig_info
(
int
sig
,
struct
siginfo
*
info
,
struct
task_struct
*
t
)
{
int
ret
;
int
ret
=
0
;
if
(
!
irqs_disabled
())
BUG
();
...
...
@@ -1346,7 +1346,6 @@ do_notify_parent_cldstop(struct task_struct *tsk, struct task_struct *parent)
static
void
finish_stop
(
int
stop_count
)
{
int
ret
;
/*
* If there are no other threads in the group, or if there is
* a group stop in progress and we are the last to stop,
...
...
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