diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2018-02-23 16:17:12 +0100 |
---|---|---|
committer | Dimitri Staessens <dimitri.staessens@ugent.be> | 2018-02-23 16:23:43 +0100 |
commit | 4dad657dec442052da2177e713e2008862fa1647 (patch) | |
tree | 365de3ea5a5dd1179def90e680b073627f12d92b /src/irmd/ipcp.c | |
parent | 7f6969bd57d6d892ad7cf97b94311d55f0957e56 (diff) | |
download | ouroboros-4dad657dec442052da2177e713e2008862fa1647.tar.gz ouroboros-4dad657dec442052da2177e713e2008862fa1647.zip |
irmd: Replace fork and execv with posix_spawn
This replaces the fork and execv calls with posix_spawn since it is
supported on more platforms, and is more efficient. Also fixes some
bad indentation.
Signed-off-by: Sander Vrijders <sander.vrijders@ugent.be>
Signed-off-by: Dimitri Staessens <dimitri.staessens@ugent.be>
Diffstat (limited to 'src/irmd/ipcp.c')
-rw-r--r-- | src/irmd/ipcp.c | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/src/irmd/ipcp.c b/src/irmd/ipcp.c index 87cbaca5..f90ba251 100644 --- a/src/irmd/ipcp.c +++ b/src/irmd/ipcp.c @@ -42,6 +42,7 @@ #include <sys/wait.h> #include <sys/socket.h> #include <sys/time.h> +#include <spawn.h> static void close_ptr(void * o) { @@ -162,15 +163,6 @@ pid_t ipcp_create(const char * name, sprintf(irmd_pid, "%u", getpid()); - pid = fork(); - if (pid == -1) { - log_err("Failed to fork"); - return pid; - } - - if (pid != 0) - return pid; - strcpy(full_name, INSTALL_PREFIX); strcat(full_name, ipcp_dir); strcat(full_name, exec_name); @@ -186,11 +178,12 @@ pid_t ipcp_create(const char * name, argv[4] = NULL; - execv(argv[0], &argv[0]); + if (posix_spawn(&pid, argv[0], NULL, NULL, argv, NULL)) { + log_err("Failed to spawn new process"); + return -1; + } - log_dbg("%s", strerror(errno)); - log_err("Failed to load IPCP daemon."); - exit(EXIT_FAILURE); + return pid; } int ipcp_destroy(pid_t pid) |