mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-29 12:50:35 +00:00
38 lines
995 B
C++
38 lines
995 B
C++
//===-- sanitizer_syscall_generic.inc ---------------------------*- C++ -*-===//
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Generic implementations of internal_syscall* and internal_iserror.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// NetBSD uses libc calls directly
|
|
#if !SANITIZER_NETBSD
|
|
|
|
#if SANITIZER_FREEBSD || SANITIZER_MAC || SANITIZER_OPENBSD || SANITIZER_SOLARIS
|
|
# define SYSCALL(name) SYS_ ## name
|
|
#else
|
|
# define SYSCALL(name) __NR_ ## name
|
|
#endif
|
|
|
|
#if defined(__x86_64__) && (SANITIZER_FREEBSD || SANITIZER_MAC)
|
|
# define internal_syscall __syscall
|
|
# else
|
|
# define internal_syscall syscall
|
|
#endif
|
|
|
|
#endif
|
|
|
|
bool internal_iserror(uptr retval, int *rverrno) {
|
|
if (retval == (uptr)-1) {
|
|
if (rverrno)
|
|
*rverrno = errno;
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|