mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-02-15 10:58:41 +01:00
fix for gettid() only after glibc 2.30
This commit is contained in:
@@ -16,6 +16,12 @@
|
||||
#include <string>
|
||||
#include <unistd.h>
|
||||
|
||||
// gettid added in glibc 2.30
|
||||
#if __GLIBC__ == 2 && __GLIBC_MINOR__ < 30
|
||||
#include <sys/syscall.h>
|
||||
#define gettid() syscall(SYS_gettid)
|
||||
#endif
|
||||
|
||||
namespace sls {
|
||||
|
||||
Receiver::~Receiver() = default;
|
||||
|
||||
Reference in New Issue
Block a user