Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
fda27ccc
Commit
fda27ccc
authored
13 years ago
by
Ken Thomases
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
libport: For spawnvp(_P_DETACH, ...), double-fork to avoid creating zombies.
parent
abe6a13f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libs/port/spawn.c
+30
-5
30 additions, 5 deletions
libs/port/spawn.c
with
30 additions
and
5 deletions
libs/port/spawn.c
+
30
−
5
View file @
fda27ccc
...
...
@@ -36,7 +36,7 @@
int
spawnvp
(
int
mode
,
const
char
*
cmdname
,
const
char
*
const
argv
[])
{
#ifndef HAVE__SPAWNVP
int
pid
=
0
,
status
,
wret
;
int
pid
,
status
,
wret
;
if
(
mode
==
_P_OVERLAY
)
{
...
...
@@ -51,20 +51,45 @@ int spawnvp(int mode, const char *cmdname, const char *const argv[])
pid
=
fork
();
if
(
pid
==
0
)
{
/* in child */
if
(
mode
==
_P_DETACH
)
{
pid
=
fork
();
if
(
pid
==
-
1
)
_exit
(
1
);
else
if
(
pid
>
0
)
_exit
(
0
);
/* else in grandchild */
}
signal
(
SIGPIPE
,
SIG_DFL
);
execvp
(
cmdname
,
(
char
**
)
argv
);
_exit
(
1
);
}
if
(
pid
!=
-
1
&&
mode
==
_P_OVERLAY
)
exit
(
0
);
if
(
pid
==
-
1
)
return
-
1
;
if
(
mode
==
_P_OVERLAY
)
exit
(
0
);
if
(
pid
!=
-
1
&&
mode
==
_P_
WAIT
)
if
(
mode
==
_P_WAIT
||
mode
==
_P_
DETACH
)
{
while
(
pid
!=
(
wret
=
waitpid
(
pid
,
&
status
,
0
)))
if
(
wret
==
-
1
&&
errno
!=
EINTR
)
break
;
if
(
pid
==
wret
&&
WIFEXITED
(
status
))
pid
=
WEXITSTATUS
(
status
);
else
pid
=
255
;
/* abnormal exit with an abort or an interrupt */
if
(
pid
==
wret
&&
WIFEXITED
(
status
))
{
if
(
mode
==
_P_WAIT
)
pid
=
WEXITSTATUS
(
status
);
else
/* mode == _P_DETACH */
if
(
WEXITSTATUS
(
status
)
!=
0
)
/* child couldn't fork grandchild */
pid
=
-
1
;
}
else
{
if
(
mode
==
_P_WAIT
)
pid
=
255
;
/* abnormal exit with an abort or an interrupt */
else
/* mode == _P_DETACH */
pid
=
-
1
;
}
}
return
pid
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment