Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
3c0ee47b
Commit
3c0ee47b
authored
Sep 04, 1996
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(create_process_1, sigchld_handler) [POSIX_SIGNALS]:
Don't reestablish handler.
parent
5970a8cb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/process.c
src/process.c
+3
-3
No files found.
src/process.c
View file @
3c0ee47b
...
...
@@ -1177,7 +1177,7 @@ SIGTYPE
create_process_1
(
signo
)
int
signo
;
{
#if
def USG
#if
defined (USG) && !defined (POSIX_SIGNALS)
/* USG systems forget handlers when they are used;
must reestablish each time */
signal
(
signo
,
create_process_1
);
...
...
@@ -3371,7 +3371,7 @@ sigchld_handler (signo)
/* USG systems forget handlers when they are used;
must reestablish each time */
#if
def USG
#if
defined (USG) && !defined (POSIX_SIGNALS)
signal
(
signo
,
sigchld_handler
);
/* WARNING - must come after wait3() */
#endif
#ifdef BSD4_1
...
...
@@ -3479,7 +3479,7 @@ sigchld_handler (signo)
Otherwise (on systems that have WNOHANG), loop around
to use up all the processes that have something to tell us. */
#if defined (USG) && ! (defined (HPUX) && defined (WNOHANG)) || defined (WINDOWSNT)
#if
def USG
#if
defined (USG) && ! defined (POSIX_SIGNALS)
signal
(
signo
,
sigchld_handler
);
#endif
errno
=
old_errno
;
...
...
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