diff options
author | Chris Robinson <[email protected]> | 2022-07-29 03:06:07 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-07-29 03:06:07 -0700 |
commit | b26ca6b65e703fdc852e451945582f0ed6cc9c35 (patch) | |
tree | 58e1f0549a0381e1434a603bac35f6b8a700611e /core | |
parent | 81b739abc17040b7db36841a69d4afbe3a396909 (diff) |
Add missing include for FreeBSD
Diffstat (limited to 'core')
-rw-r--r-- | core/rtkit.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/rtkit.cpp b/core/rtkit.cpp index 9210220e..d4a9b531 100644 --- a/core/rtkit.cpp +++ b/core/rtkit.cpp @@ -41,6 +41,9 @@ #include <unistd.h> #include <sys/types.h> #include <sys/syscall.h> +#ifdef __FreeBSD__ +#include <sys/thr.h> +#endif namespace dbus { |