diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2019-08-05 18:36:39 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2019-08-05 18:36:39 -0700 |
commit | 80a85febcfb44369b7c84f4d64a7e53bf390f920 (patch) | |
tree | b6b6354ddf8955139f9dcfab2ca2ea52da8f6ce5 /alc/helpers.cpp | |
parent | d06afa7ca11e06186a62c9465ad099374a4514e7 (diff) |
Update some includes
Diffstat (limited to 'alc/helpers.cpp')
-rw-r--r-- | alc/helpers.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/alc/helpers.cpp b/alc/helpers.cpp index 7a547168..2174de05 100644 --- a/alc/helpers.cpp +++ b/alc/helpers.cpp @@ -109,6 +109,7 @@ DEFINE_PROPERTYKEY(PKEY_AudioEndpoint_GUID, 0x1da5d803, 0xd492, 0x4edd, 0x8c, 0x #include "cpu_caps.h" #include "fpu_modes.h" #include "logging.h" +#include "vector.h" #if defined(HAVE_GCC_GET_CPUID) && (defined(__i386__) || defined(__x86_64__) || \ @@ -595,6 +596,11 @@ void SetRTPriority(void) #else +#if defined(HAVE_PTHREAD_SETSCHEDPARAM) && !defined(__OpenBSD__) +#include <pthread.h> +#include <sched.h> +#endif + const PathNamePair &GetProcBinary() { static PathNamePair ret; |