File diff r21584:561d516cfa45 → r21585:c96bdc9bd57c
src/os/macosx/crashlog_osx.cpp
Show inline comments
 
@@ -30,13 +30,13 @@
 
#define IS_ALIGNED(addr) (((uintptr_t)(addr) & 0xf) == 8)
 
#else
 
#define IS_ALIGNED(addr) (((uintptr_t)(addr) & 0xf) == 0)
 
#endif
 

	
 
/* printf format specification for 32/64-bit addresses. */
 
#if __LP64__
 
#ifdef __LP64__
 
#define PRINTF_PTR "0x%016lx"
 
#else
 
#define PRINTF_PTR "0x%08lx"
 
#endif
 

	
 
#define MAX_STACK_FRAMES 64