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/lib/CMakeLists.txt | |
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/lib/CMakeLists.txt')
-rw-r--r-- | src/lib/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/CMakeLists.txt b/src/lib/CMakeLists.txt index 589c8769..eaff2ddb 100644 --- a/src/lib/CMakeLists.txt +++ b/src/lib/CMakeLists.txt @@ -15,6 +15,7 @@ set(SOURCE_FILES list.c rina_name.c sockets.c + utils.c ) add_library(ouroboros SHARED ${SOURCE_FILES}) |