diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-15 15:43:17 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-15 15:43:17 +0100 |
commit | bd7a8ea8a1adbd6763aea857e72623929b7ad7a4 (patch) | |
tree | 168c30a3090d14c654967d0942b4718cd4a979a9 /src/ipcpd/main.c | |
parent | 74dc5818ac8586fcc36915874592c9f4fbb4e6f6 (diff) | |
download | ouroboros-bd7a8ea8a1adbd6763aea857e72623929b7ad7a4.tar.gz ouroboros-bd7a8ea8a1adbd6763aea857e72623929b7ad7a4.zip |
irmd, lib: Create and destroy IPC Processes
This adds the functionality to create and destroy IPCPs. Upon creation
a new process is forked and execve'd. Upon destruction the IPCP is
destroyed by killing it with SIGTERM.
Diffstat (limited to 'src/ipcpd/main.c')
-rw-r--r-- | src/ipcpd/main.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ipcpd/main.c b/src/ipcpd/main.c index b67b0af9..7ffd1c48 100644 --- a/src/ipcpd/main.c +++ b/src/ipcpd/main.c @@ -1,10 +1,15 @@ #define OUROBOROS_PREFIX "ipcp" #include <ouroboros/logs.h> +#include <stdbool.h> int main() { LOG_DBG("Test of the IPCP"); + while (true) { + + } + return 0; } |