diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-09-13 12:16:41 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-09-18 23:06:09 -0400 |
commit | 1fe385d782ae117d2a68266e14777d890eddf4e0 (patch) | |
tree | f0c3d3da40b80e031fa413f2ef5c13546ca14423 /include | |
parent | 4d68bd4e120f6b7633bfb9ef979338b8f3d9e9fa (diff) | |
download | stasis-1fe385d782ae117d2a68266e14777d890eddf4e0.tar.gz |
Darwin portability: Use sem_open and sem_close instead of sem_init and sem_destroy
Diffstat (limited to 'include')
-rw-r--r-- | include/multiprocessing.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/multiprocessing.h b/include/multiprocessing.h index 9e0c429..648bd80 100644 --- a/include/multiprocessing.h +++ b/include/multiprocessing.h @@ -3,6 +3,7 @@ #define STASIS_MULTIPROCESSING_H #include "core.h" +#include <signal.h> #include <sys/wait.h> #include <semaphore.h> #include <sys/mman.h> |