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
nexedi
linux
Commits
0369ebec
Commit
0369ebec
authored
Jan 15, 2004
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://gkernel.bkbits.net/net-drivers-2.5
into evo.osdl.org:/home/torvalds/v2.5/linux
parents
bc8acd56
3f2a0d1d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
include/linux/signal.h
include/linux/signal.h
+1
-0
kernel/exit.c
kernel/exit.c
+2
-1
No files found.
include/linux/signal.h
View file @
0369ebec
...
@@ -207,6 +207,7 @@ static inline void init_sigpending(struct sigpending *sig)
...
@@ -207,6 +207,7 @@ static inline void init_sigpending(struct sigpending *sig)
INIT_LIST_HEAD
(
&
sig
->
list
);
INIT_LIST_HEAD
(
&
sig
->
list
);
}
}
extern
int
group_send_sig_info
(
int
sig
,
struct
siginfo
*
info
,
struct
task_struct
*
p
);
extern
long
do_sigpending
(
void
__user
*
,
unsigned
long
);
extern
long
do_sigpending
(
void
__user
*
,
unsigned
long
);
extern
int
sigprocmask
(
int
,
sigset_t
*
,
sigset_t
*
);
extern
int
sigprocmask
(
int
,
sigset_t
*
,
sigset_t
*
);
...
...
kernel/exit.c
View file @
0369ebec
...
@@ -529,7 +529,8 @@ static inline void reparent_thread(task_t *p, task_t *father, int traced)
...
@@ -529,7 +529,8 @@ static inline void reparent_thread(task_t *p, task_t *father, int traced)
p
->
self_exec_id
++
;
p
->
self_exec_id
++
;
if
(
p
->
pdeath_signal
)
if
(
p
->
pdeath_signal
)
send_group_sig_info
(
p
->
pdeath_signal
,
0
,
p
);
/* We already hold the tasklist_lock here. */
group_send_sig_info
(
p
->
pdeath_signal
,
(
void
*
)
0
,
p
);
/* Move the child from its dying parent to the new one. */
/* Move the child from its dying parent to the new one. */
if
(
unlikely
(
traced
))
{
if
(
unlikely
(
traced
))
{
...
...
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