Sign in
android
/
platform
/
external
/
jemalloc_new
/
00b0763d656a7ec4d9a4e2475167f4ea8e28e641
/
.
/
test
/
unit
/
spin.c
blob: b965f742794bfaa5302bc25937a7521e3ac5b80c [
file
]
#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
);
}