1
0
mirror of https://github.com/stefanocasazza/ULib.git synced 2025-10-26 19:57:22 +08:00

change license + optimizations + bug fixing

This commit is contained in:
stefanocasazza
2015-05-28 19:04:25 +02:00
parent fa9ca91508
commit b9edba64e8
427 changed files with 29552 additions and 26969 deletions

View File

@@ -460,3 +460,13 @@ struct __una_u32 { uint32_t x __attribute__((packed)); };
#ifndef PLATFORM_VAR
#define PLATFORM_VAR ""
#endif
/* Some useful macros for conditionally compiling memcheck features... */
#ifndef HAVE_ARCH64
# define U_CHECK_MEMORY_SENTINEL 0x0a1b2c3d
# define U_CHECK_MEMORY_SENTINEL_STR "0x0a1b2c3d"
#else
# define U_CHECK_MEMORY_SENTINEL 0x0a1b2c3d4e5f6789
# define U_CHECK_MEMORY_SENTINEL_STR "0x0a1b2c3d4e5f6789"
#endif