Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
0bf679a3
Commit
0bf679a3
authored
Mar 08, 2001
by
Bruce Korb
Committed by
Bruce Korb
Mar 08, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix SIGCHLD handling
From-SVN: r40330
parent
f6646274
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/ChangeLog
+5
-0
gcc/gcc.c
+3
-0
No files found.
gcc/ChangeLog
View file @
0bf679a3
2001-03-08 Bruce Korb <bkorb@gnu.org>
gcc.c(main): ensure SIGCHLD handling is set to SIG_DFL so that
wiat4() can receive the signal.
Thu Mar 8 21:09:10 2001 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* fixinc/inclhack.def (AAB_dgux_int_varargs): Don't use HTML
...
...
gcc/gcc.c
View file @
0bf679a3
...
...
@@ -5517,6 +5517,9 @@ main (argc, argv)
if
(
signal
(
SIGPIPE
,
SIG_IGN
)
!=
SIG_IGN
)
signal
(
SIGPIPE
,
fatal_error
);
#endif
/* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
receive the signal. A different setting is inheritable */
signal
(
SIGCHLD
,
SIG_DFL
);
argbuf_length
=
10
;
argbuf
=
(
const
char
**
)
xmalloc
(
argbuf_length
*
sizeof
(
const
char
*
));
...
...
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