You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "test/jemalloc_test.h"
|
|
|
|
#include "jemalloc/internal/spin.h"
|
|
|
|
TEST_BEGIN(test_spin) {
|
|
spin_t spinner = SPIN_INITIALIZER;
|
|
|
|
for (unsigned i = 0; i < 100; i++) {
|
|
spin_adaptive(&spinner);
|
|
}
|
|
}
|
|
TEST_END
|
|
|
|
int
|
|
main(void) {
|
|
return test(
|
|
test_spin);
|
|
}
|