Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Main
Synchronet
Commits
768317a3
Commit
768317a3
authored
21 years ago
by
deuce
Browse files
Options
Downloads
Patches
Plain Diff
*nix support completed.
parent
36129923
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
src/odoors/ODSpawn.c
+63
-1
63 additions, 1 deletion
src/odoors/ODSpawn.c
with
63 additions
and
1 deletion
src/odoors/ODSpawn.c
+
63
−
1
View file @
768317a3
...
...
@@ -56,6 +56,9 @@
#include
<errno.h>
#include
"OpenDoor.h"
#ifdef ODPLAT_NIX
#include
<signal.h>
#endif
#include
"ODCore.h"
#include
"ODGen.h"
#include
"ODCom.h"
...
...
@@ -257,7 +260,7 @@ ODAPIDEF INT16 ODCALL od_spawnvpe(INT16 nModeFlag, char *pszPath,
#ifdef ODPLAT_WIN32
void
*
pWindow
;
#endif
/* ODPLAT_WIN32 */
#ifdef
ODPLAT_DOS
#if
def
ined(
ODPLAT_DOS
) || defined(ODPLAT_NIX)
char
*
pszDir
;
BYTE
*
abtScreenBuffer
;
INT
nDrive
;
...
...
@@ -1016,3 +1019,62 @@ int _spawnve(int nModeFlag, char *pszPath, char *papszArgs[],
}
#endif
/* ODPLAT_DOS */
#ifdef ODPLAT_NIX
/* ----------------------------------------------------------------------------
* _spawnvpe() *** PRIVATE FUNCTION ***
*
* Executes a child program in the *nix environment.
*
* Parameters: nModeFlag - Must be P_WAIT or P_NOWAIT
*
* pszPath - Name of program to execute.
*
* papszArgs - Array of command-line arguments.
*
* papszEnviron - Array of environment variables.
*
* Return: -1 on failure or the spawned-to program's return value on
* success.
*/
int
_spawnvpe
(
int
nModeFlag
,
char
*
pszPath
,
char
*
papszArgs
[],
char
*
papszEnviron
[])
{
pid_t
child
;
int
status
;
pid_t
wret
;
struct
sigaction
act
;
child
=
fork
();
if
(
nModeFlag
==
P_WAIT
)
{
/* require wait for child */
act
.
sa_handler
=
SIG_IGN
;
sigemptyset
(
&
(
act
.
sa_mask
));
act
.
sa_flags
=
SA_NOCLDSTOP
;
sigaction
(
SIGCHLD
,
&
act
,
NULL
);
}
else
{
/* Ignore SIGCHLD for backgrounded spawned processes */
act
.
sa_handler
=
SIG_IGN
;
sigemptyset
(
&
(
act
.
sa_mask
));
act
.
sa_flags
=
SA_NOCLDSTOP
|
SA_NOCLDWAIT
;
sigaction
(
SIGCHLD
,
&
act
,
NULL
);
}
if
(
!
child
)
{
/* Do the exec stuff here */
execve
(
pszPath
,
papszArgs
,
papszEnviron
);
exit
(
-
1
);
/* this should never happen! */
}
if
(
nModeFlag
==
P_WAIT
)
{
wret
=
waitpid
(
child
,
&
status
,
0
);
if
(
WIFEXITED
(
status
))
{
return
(
WEXITSTATUS
(
status
));
}
return
(
-
1
);
}
return
(
0
);
}
#endif
/* ODPLAT_NIX */
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