forked from OSchip/llvm-project
61 lines
1.4 KiB
C
61 lines
1.4 KiB
C
|
//===-- safestack_platform.h ----------------------------------------------===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// This file implements platform specific parts of SafeStack runtime.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#ifndef SAFESTACK_PLATFORM_H
|
||
|
#define SAFESTACK_PLATFORM_H
|
||
|
|
||
|
#include "sanitizer_common/sanitizer_platform.h"
|
||
|
|
||
|
#include <sys/syscall.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
namespace safestack {
|
||
|
|
||
|
inline pid_t GetTid() {
|
||
|
#if SANITIZER_NETBSD
|
||
|
return _lwp_self();
|
||
|
#elif SANITIZER_FREEBSD
|
||
|
long Tid;
|
||
|
thr_self(&Tid);
|
||
|
return Tid;
|
||
|
#elif SANITIZER_OPENBSD
|
||
|
return syscall(SYS_getthrid);
|
||
|
#elif SANITIZER_SOLARIS
|
||
|
return thr_self();
|
||
|
#else
|
||
|
return syscall(SYS_gettid);
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
inline int TgKill(pid_t pid, pid_t tid, int sig) {
|
||
|
#if SANITIZER_NETBSD
|
||
|
(void)pid;
|
||
|
return _lwp_kill(tid, sig);
|
||
|
#elif SANITIZER_LINUX
|
||
|
return syscall(SYS_tgkill, pid, tid, sig);
|
||
|
#elif SANITIZER_FREEBSD
|
||
|
return syscall(SYS_thr_kill2, pid, tid, sig);
|
||
|
#elif SANITIZER_OPENBSD
|
||
|
(void)pid;
|
||
|
return syscall(SYSCALL(thrkill), tid, sig, nullptr);
|
||
|
#elif SANITIZER_SOLARIS
|
||
|
(void)pid;
|
||
|
return thr_kill(tid, sig);
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
} // namespace safestack
|
||
|
|
||
|
#endif // SAFESTACK_PLATFORM_H
|