server-skynet-source-3rd-je.../test/integration
Qi Wang ec532e2c5c Implement per-CPU arena.
The new feature, opt.percpu_arena, determines thread-arena association
dynamically based CPU id. Three modes are supported: "percpu", "phycpu"
and disabled.

"percpu" uses the current core id (with help from sched_getcpu())
directly as the arena index, while "phycpu" will assign threads on the
same physical CPU to the same arena. In other words, "percpu" means # of
arenas == # of CPUs, while "phycpu" has # of arenas == 1/2 * (# of
CPUs). Note that no runtime check on whether hyper threading is enabled
is added yet.

When enabled, threads will be migrated between arenas when a CPU change
is detected. In the current design, to reduce overhead from reading CPU
id, each arena tracks the thread accessed most recently. When a new
thread comes in, we will read CPU id and update arena if necessary.
2017-03-08 23:19:01 -08:00
..
cpp Remove extraneous parens around return arguments. 2017-01-20 21:43:07 -08:00
aligned_alloc.c Replace tabs following #define with spaces. 2017-01-20 21:45:53 -08:00
allocated.c Remove extraneous parens around return arguments. 2017-01-20 21:43:07 -08:00
extent.c Use MALLOC_CONF rather than malloc_conf for tests. 2017-02-23 08:57:02 -08:00
extent.sh Use MALLOC_CONF rather than malloc_conf for tests. 2017-02-23 08:57:02 -08:00
MALLOCX_ARENA.c Replace tabs following #define with spaces. 2017-01-20 21:45:53 -08:00
mallocx.c Use MALLOC_CONF rather than malloc_conf for tests. 2017-02-23 08:57:02 -08:00
mallocx.sh Use MALLOC_CONF rather than malloc_conf for tests. 2017-02-23 08:57:02 -08:00
overflow.c Remove extraneous parens around return arguments. 2017-01-20 21:43:07 -08:00
posix_memalign.c Replace tabs following #define with spaces. 2017-01-20 21:45:53 -08:00
rallocx.c Replace tabs following #define with spaces. 2017-01-20 21:45:53 -08:00
sdallocx.c Replace tabs following #define with spaces. 2017-01-20 21:45:53 -08:00
thread_arena.c Implement per-CPU arena. 2017-03-08 23:19:01 -08:00
thread_tcache_enabled.c Remove extraneous parens around return arguments. 2017-01-20 21:43:07 -08:00
xallocx.c Use MALLOC_CONF rather than malloc_conf for tests. 2017-02-23 08:57:02 -08:00
xallocx.sh Use MALLOC_CONF rather than malloc_conf for tests. 2017-02-23 08:57:02 -08:00