@@ -115,7 +115,9 @@ const int PTHREAD_MUTEX_RECURSIVE_NP = 1;
115
115
const int EINVAL = 22 ;
116
116
const int EBUSY = 16 ;
117
117
const int EOWNERDEAD = 130 ;
118
+ #if !SANITIZER_MAC
118
119
const int EPOLL_CTL_ADD = 1 ;
120
+ #endif
119
121
const int SIGILL = 4 ;
120
122
const int SIGABRT = 6 ;
121
123
const int SIGFPE = 8 ;
@@ -130,7 +132,9 @@ const int SIGBUS = 7;
130
132
const int SIGSYS = 31 ;
131
133
#endif
132
134
void *const MAP_FAILED = (void *)-1 ;
135
+ #if !SANITIZER_MAC
133
136
const int PTHREAD_BARRIER_SERIAL_THREAD = -1 ;
137
+ #endif
134
138
const int MAP_FIXED = 0x10 ;
135
139
typedef long long_t ; // NOLINT
136
140
@@ -385,6 +389,7 @@ static int setup_at_exit_wrapper(ThreadState *thr, uptr pc, void(*f)(),
385
389
return res;
386
390
}
387
391
392
+ #if !SANITIZER_MAC
388
393
static void on_exit_wrapper (int status, void *arg) {
389
394
ThreadState *thr = cur_thread ();
390
395
uptr pc = 0 ;
@@ -394,7 +399,6 @@ static void on_exit_wrapper(int status, void *arg) {
394
399
__libc_free (ctx);
395
400
}
396
401
397
- #if !SANITIZER_MAC
398
402
TSAN_INTERCEPTOR (int , on_exit, void (*f)(int , void *), void *arg) {
399
403
if (cur_thread ()->in_symbolizer )
400
404
return 0 ;
@@ -2198,13 +2202,15 @@ struct TsanInterceptorContext {
2198
2202
const uptr pc;
2199
2203
};
2200
2204
2205
+ #if !SANITIZER_MAC
2201
2206
static void HandleRecvmsg (ThreadState *thr, uptr pc,
2202
2207
__sanitizer_msghdr *msg) {
2203
2208
int fds[64 ];
2204
2209
int cnt = ExtractRecvmsgFDs (msg, fds, ARRAY_SIZE (fds));
2205
2210
for (int i = 0 ; i < cnt; i++)
2206
2211
FdEventCreate (thr, pc, fds[i]);
2207
2212
}
2213
+ #endif
2208
2214
2209
2215
#include " sanitizer_common/sanitizer_platform_interceptors.h"
2210
2216
// Causes interceptor recursion (getaddrinfo() and fopen())
@@ -2355,6 +2361,7 @@ struct ScopedSyscall {
2355
2361
}
2356
2362
};
2357
2363
2364
+ #if !SANITIZER_MAC
2358
2365
static void syscall_access_range (uptr pc, uptr p, uptr s, bool write) {
2359
2366
TSAN_SYSCALL ();
2360
2367
MemoryAccessRange (thr, pc, p, s, write );
@@ -2408,6 +2415,7 @@ static void syscall_post_fork(uptr pc, int pid) {
2408
2415
ForkParentAfter (thr, pc);
2409
2416
}
2410
2417
}
2418
+ #endif
2411
2419
2412
2420
#define COMMON_SYSCALL_PRE_READ_RANGE (p, s ) \
2413
2421
syscall_access_range (GET_CALLER_PC(), (uptr)(p), (uptr)(s), false)
@@ -2458,10 +2466,12 @@ static void finalize(void *arg) {
2458
2466
Die ();
2459
2467
}
2460
2468
2469
+ #if !SANITIZER_MAC
2461
2470
static void unreachable () {
2462
2471
Report (" FATAL: ThreadSanitizer: unreachable called\n " );
2463
2472
Die ();
2464
2473
}
2474
+ #endif
2465
2475
2466
2476
void InitializeInterceptors () {
2467
2477
#if !SANITIZER_MAC
0 commit comments