Reformat the codebase with the clang-format 18.

This commit is contained in:
guangli-dai
2025-06-13 12:31:12 -07:00
committed by Guangli Dai
parent a952a3b8b0
commit 6200e8987f
346 changed files with 18286 additions and 17770 deletions

View File

@@ -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);
}