summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--proc.c27
-rw-r--r--proc.h1
2 files changed, 28 insertions, 0 deletions
diff --git a/proc.c b/proc.c
index 672f00d..b0c577c 100644
--- a/proc.c
+++ b/proc.c
@@ -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;
+}
diff --git a/proc.h b/proc.h
index 996ce06..9220b2a 100644
--- a/proc.h
+++ b/proc.h
@@ -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 */