xref: /netbsd-src/external/bsd/jemalloc/dist/test/unit/spin.c (revision d16b7486a53dcb8072b60ec6fcb4373a2d0c27b7)
1 #include "test/jemalloc_test.h"
2 
3 #include "jemalloc/internal/spin.h"
4 
5 TEST_BEGIN(test_spin) {
6 	spin_t spinner = SPIN_INITIALIZER;
7 
8 	for (unsigned i = 0; i < 100; i++) {
9 		spin_adaptive(&spinner);
10 	}
11 }
12 TEST_END
13 
14 int
15 main(void) {
16 	return test(
17 	    test_spin);
18 }
19