Fix style nits.
This commit is contained in:
parent
1b5830178f
commit
1423ee9016
@ -1,7 +1,7 @@
|
|||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
#ifdef JEMALLOC_H_TYPES
|
#ifdef JEMALLOC_H_TYPES
|
||||||
|
|
||||||
#define JEMALLOC_CLOCK_GETTIME defined(_POSIX_MONOTONIC_CLOCK) \
|
#define JEMALLOC_CLOCK_GETTIME defined(_POSIX_MONOTONIC_CLOCK) \
|
||||||
&& _POSIX_MONOTONIC_CLOCK >= 0
|
&& _POSIX_MONOTONIC_CLOCK >= 0
|
||||||
|
|
||||||
typedef struct nstime_s nstime_t;
|
typedef struct nstime_s nstime_t;
|
||||||
|
@ -77,7 +77,7 @@ tsd_cleanup(void *arg)
|
|||||||
/* Do nothing. */
|
/* Do nothing. */
|
||||||
break;
|
break;
|
||||||
case tsd_state_nominal:
|
case tsd_state_nominal:
|
||||||
#define O(n, t) \
|
#define O(n, t) \
|
||||||
n##_cleanup(tsd);
|
n##_cleanup(tsd);
|
||||||
MALLOC_TSD
|
MALLOC_TSD
|
||||||
#undef O
|
#undef O
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
#define JEMALLOC_TEST_JUNK_OPT "junk:alloc"
|
#define JEMALLOC_TEST_JUNK_OPT "junk:alloc"
|
||||||
#include "junk.c"
|
#include "junk.c"
|
||||||
#undef JEMALLOC_TEST_JUNK_OPT
|
#undef JEMALLOC_TEST_JUNK_OPT
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
#define JEMALLOC_TEST_JUNK_OPT "junk:free"
|
#define JEMALLOC_TEST_JUNK_OPT "junk:free"
|
||||||
#include "junk.c"
|
#include "junk.c"
|
||||||
#undef JEMALLOC_TEST_JUNK_OPT
|
#undef JEMALLOC_TEST_JUNK_OPT
|
||||||
|
@ -162,11 +162,11 @@ TEST_BEGIN(test_malloc_snprintf_truncated)
|
|||||||
char buf[BUFLEN];
|
char buf[BUFLEN];
|
||||||
size_t result;
|
size_t result;
|
||||||
size_t len;
|
size_t len;
|
||||||
#define TEST(expected_str_untruncated, ...) do { \
|
#define TEST(expected_str_untruncated, ...) do { \
|
||||||
result = malloc_snprintf(buf, len, __VA_ARGS__); \
|
result = malloc_snprintf(buf, len, __VA_ARGS__); \
|
||||||
assert_d_eq(strncmp(buf, expected_str_untruncated, len-1), 0, \
|
assert_d_eq(strncmp(buf, expected_str_untruncated, len-1), 0, \
|
||||||
"Unexpected string inequality (\"%s\" vs \"%s\")", \
|
"Unexpected string inequality (\"%s\" vs \"%s\")", \
|
||||||
buf, expected_str_untruncated); \
|
buf, expected_str_untruncated); \
|
||||||
assert_zu_eq(result, strlen(expected_str_untruncated), \
|
assert_zu_eq(result, strlen(expected_str_untruncated), \
|
||||||
"Unexpected result"); \
|
"Unexpected result"); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
Loading…
Reference in New Issue
Block a user