2012-03-27 09:54:44 +08:00
|
|
|
#define JEMALLOC_MANGLE
|
|
|
|
#include "jemalloc_test.h"
|
|
|
|
|
|
|
|
void *
|
2012-04-19 00:29:42 +08:00
|
|
|
je_thread_start(void *arg)
|
2012-03-27 09:54:44 +08:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
size_t sz;
|
|
|
|
bool e0, e1;
|
|
|
|
|
|
|
|
sz = sizeof(bool);
|
|
|
|
if ((err = mallctl("thread.tcache.enabled", &e0, &sz, NULL, 0))) {
|
|
|
|
if (err == ENOENT) {
|
|
|
|
#ifdef JEMALLOC_TCACHE
|
|
|
|
assert(false);
|
|
|
|
#endif
|
|
|
|
}
|
2012-04-11 06:07:44 +08:00
|
|
|
goto label_return;
|
2012-03-27 09:54:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (e0) {
|
|
|
|
e1 = false;
|
|
|
|
assert(mallctl("thread.tcache.enabled", &e0, &sz, &e1, sz)
|
|
|
|
== 0);
|
|
|
|
assert(e0);
|
|
|
|
}
|
|
|
|
|
|
|
|
e1 = true;
|
|
|
|
assert(mallctl("thread.tcache.enabled", &e0, &sz, &e1, sz) == 0);
|
|
|
|
assert(e0 == false);
|
|
|
|
|
|
|
|
e1 = true;
|
|
|
|
assert(mallctl("thread.tcache.enabled", &e0, &sz, &e1, sz) == 0);
|
|
|
|
assert(e0);
|
|
|
|
|
|
|
|
e1 = false;
|
|
|
|
assert(mallctl("thread.tcache.enabled", &e0, &sz, &e1, sz) == 0);
|
|
|
|
assert(e0);
|
|
|
|
|
|
|
|
e1 = false;
|
|
|
|
assert(mallctl("thread.tcache.enabled", &e0, &sz, &e1, sz) == 0);
|
|
|
|
assert(e0 == false);
|
|
|
|
|
|
|
|
free(malloc(1));
|
|
|
|
e1 = true;
|
|
|
|
assert(mallctl("thread.tcache.enabled", &e0, &sz, &e1, sz) == 0);
|
|
|
|
assert(e0 == false);
|
|
|
|
|
|
|
|
free(malloc(1));
|
|
|
|
e1 = true;
|
|
|
|
assert(mallctl("thread.tcache.enabled", &e0, &sz, &e1, sz) == 0);
|
|
|
|
assert(e0);
|
|
|
|
|
|
|
|
free(malloc(1));
|
|
|
|
e1 = false;
|
|
|
|
assert(mallctl("thread.tcache.enabled", &e0, &sz, &e1, sz) == 0);
|
|
|
|
assert(e0);
|
|
|
|
|
|
|
|
free(malloc(1));
|
|
|
|
e1 = false;
|
|
|
|
assert(mallctl("thread.tcache.enabled", &e0, &sz, &e1, sz) == 0);
|
|
|
|
assert(e0 == false);
|
|
|
|
|
|
|
|
free(malloc(1));
|
2012-04-11 06:07:44 +08:00
|
|
|
label_return:
|
2012-03-27 09:54:44 +08:00
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
2012-04-19 00:29:42 +08:00
|
|
|
je_thread_t thread;
|
2012-03-27 09:54:44 +08:00
|
|
|
|
2012-04-16 22:30:26 +08:00
|
|
|
malloc_printf("Test begin\n");
|
2012-03-27 09:54:44 +08:00
|
|
|
|
2012-04-19 00:29:42 +08:00
|
|
|
je_thread_start(NULL);
|
2012-03-27 09:54:44 +08:00
|
|
|
|
2012-04-19 00:29:42 +08:00
|
|
|
je_thread_create(&thread, je_thread_start, NULL);
|
|
|
|
je_thread_join(thread, (void *)&ret);
|
2012-03-27 09:54:44 +08:00
|
|
|
|
2012-04-19 00:29:42 +08:00
|
|
|
je_thread_start(NULL);
|
2012-03-27 09:54:44 +08:00
|
|
|
|
2012-04-19 00:29:42 +08:00
|
|
|
je_thread_create(&thread, je_thread_start, NULL);
|
|
|
|
je_thread_join(thread, (void *)&ret);
|
2012-03-27 09:54:44 +08:00
|
|
|
|
2012-04-19 00:29:42 +08:00
|
|
|
je_thread_start(NULL);
|
2012-03-27 09:54:44 +08:00
|
|
|
|
2012-04-16 22:30:26 +08:00
|
|
|
malloc_printf("Test end\n");
|
2012-03-27 09:54:44 +08:00
|
|
|
return (ret);
|
|
|
|
}
|