mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-23 13:13:06 +00:00
Reformat the codebase with the clang-format 18.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
#include "test/jemalloc_test.h"
|
||||
|
||||
#define NTHREADS 2
|
||||
#define NINCRS 2000000
|
||||
#define NTHREADS 2
|
||||
#define NINCRS 2000000
|
||||
|
||||
TEST_BEGIN(test_mtx_basic) {
|
||||
mtx_t mtx;
|
||||
@@ -14,14 +14,14 @@ TEST_BEGIN(test_mtx_basic) {
|
||||
TEST_END
|
||||
|
||||
typedef struct {
|
||||
mtx_t mtx;
|
||||
unsigned x;
|
||||
mtx_t mtx;
|
||||
unsigned x;
|
||||
} thd_start_arg_t;
|
||||
|
||||
static void *
|
||||
thd_start(void *varg) {
|
||||
thd_start_arg_t *arg = (thd_start_arg_t *)varg;
|
||||
unsigned i;
|
||||
unsigned i;
|
||||
|
||||
for (i = 0; i < NINCRS; i++) {
|
||||
mtx_lock(&arg->mtx);
|
||||
@@ -33,8 +33,8 @@ thd_start(void *varg) {
|
||||
|
||||
TEST_BEGIN(test_mtx_race) {
|
||||
thd_start_arg_t arg;
|
||||
thd_t thds[NTHREADS];
|
||||
unsigned i;
|
||||
thd_t thds[NTHREADS];
|
||||
unsigned i;
|
||||
|
||||
expect_false(mtx_init(&arg.mtx), "Unexpected mtx_init() failure");
|
||||
arg.x = 0;
|
||||
@@ -44,14 +44,12 @@ TEST_BEGIN(test_mtx_race) {
|
||||
for (i = 0; i < NTHREADS; i++) {
|
||||
thd_join(thds[i], NULL);
|
||||
}
|
||||
expect_u_eq(arg.x, NTHREADS * NINCRS,
|
||||
"Race-related counter corruption");
|
||||
expect_u_eq(
|
||||
arg.x, NTHREADS * NINCRS, "Race-related counter corruption");
|
||||
}
|
||||
TEST_END
|
||||
|
||||
int
|
||||
main(void) {
|
||||
return test(
|
||||
test_mtx_basic,
|
||||
test_mtx_race);
|
||||
return test(test_mtx_basic, test_mtx_race);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user