diff options
-rw-r--r-- | proc.c | 27 | ||||
-rw-r--r-- | proc.h | 1 |
2 files changed, 28 insertions, 0 deletions
@@ -1,5 +1,6 @@ #define _GNU_SOURCE #include <sched.h> +#include <sys/wait.h> #include <sys/types.h> #include <sys/resource.h> #include <unistd.h> @@ -79,3 +80,29 @@ ssize_t proc_get_cmdline(unsigned int pid, char *cmdline, size_t len) return ret; } + +int proc_exec(const char *proc, char *const argv[]) +{ + int status; + pid_t pid; + + pid = fork(); + if (pid < 0) { + perror("fork"); + return -1; + } else if (pid == 0) { + if (execvp(proc, argv) < 0) + fprintf(stderr, "Failed to exec: %s\n", proc); + _exit(1); + } + + if (waitpid(pid, &status, 0) < 0) { + perror("waitpid"); + return -2; + } + + if (!WIFEXITED(status)) + return -WEXITSTATUS(status); + + return 0; +} @@ -7,5 +7,6 @@ extern void cpu_affinity(int cpu); extern int set_proc_prio(int prio); extern int set_sched_status(int policy, int priority); extern ssize_t proc_get_cmdline(unsigned int pid, char *cmdline, size_t len); +extern int proc_exec(const char *proc, char *const argv[]); #endif /* PROC_H */ |