diff options
author | Adrian Graber <adrian@adriangraber.com> | 2021-01-24 16:34:47 +0100 |
---|---|---|
committer | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-02-16 16:29:55 +0100 |
commit | ee287f61202c1684af730daa283ae18068ec8864 (patch) | |
tree | 186990b36b4b38e76d8c176225bfefd06489ebcf /src | |
parent | Add unnamed semaphore define toggle for CdStreamPosix (diff) | |
download | re3-ee287f61202c1684af730daa283ae18068ec8864.tar re3-ee287f61202c1684af730daa283ae18068ec8864.tar.gz re3-ee287f61202c1684af730daa283ae18068ec8864.tar.bz2 re3-ee287f61202c1684af730daa283ae18068ec8864.tar.lz re3-ee287f61202c1684af730daa283ae18068ec8864.tar.xz re3-ee287f61202c1684af730daa283ae18068ec8864.tar.zst re3-ee287f61202c1684af730daa283ae18068ec8864.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/CdStreamPosix.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/CdStreamPosix.cpp b/src/core/CdStreamPosix.cpp index 09611fba..50d823d2 100644 --- a/src/core/CdStreamPosix.cpp +++ b/src/core/CdStreamPosix.cpp @@ -1,8 +1,8 @@ #ifndef _WIN32 #include "common.h" #include "crossplatform.h" -#include <pthread.h> #include <signal.h> +#include <pthread.h> #include <semaphore.h> #include <sys/types.h> #include <unistd.h> @@ -13,7 +13,10 @@ #include <fcntl.h> #include <sys/resource.h> #include <stdarg.h> + +#ifdef __linux__ #include <sys/syscall.h> +#endif #include "CdStream.h" #include "rwcore.h" |