mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
This change adds tests for the new memory manager code particularly with its windows support. Function call tracing now works reliably on Silicon since our function hooker was missing new Apple self-modifying code APIs Many tests that were disabled a long time ago on aarch64 are reactivated by this change, now that arm support is on equal terms with x86. There's been a lot of places where ftrace could cause deadlocks, which have been hunted down across all platforms thanks to new tests. A bug in Windows's kill() function has been identified.
12 lines
263 B
C
12 lines
263 B
C
#ifndef COSMOPOLITAN_THIRD_PARTY_NSYNC_DEFS_H_
|
|
#define COSMOPOLITAN_THIRD_PARTY_NSYNC_DEFS_H_
|
|
COSMOPOLITAN_C_START_
|
|
|
|
#ifdef MODE_DBG
|
|
#define NSYNC_DEBUG 1
|
|
#else
|
|
#define NSYNC_DEBUG 0
|
|
#endif
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_THIRD_PARTY_NSYNC_DEFS_H_ */
|