diff options
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/nptl-stack.c | 8 | ||||
-rw-r--r-- | nptl/nptl-stack.h | 3 | ||||
-rw-r--r-- | nptl/pthread_mutex_conf.c | 9 |
3 files changed, 16 insertions, 4 deletions
diff --git a/nptl/nptl-stack.c b/nptl/nptl-stack.c index 1a0c460ba8..3f33a4c20b 100644 --- a/nptl/nptl-stack.c +++ b/nptl/nptl-stack.c @@ -21,8 +21,7 @@ #include <ldsodefs.h> #include <pthreadP.h> -/* Maximum size in kB of cache. 40MiBi by default. */ -static const size_t stack_cache_maxsize = 40 * 1024 * 1024; +size_t __nptl_stack_cache_maxsize = 40 * 1024 * 1024; void __nptl_stack_list_del (list_t *elem) @@ -103,8 +102,9 @@ queue_stack (struct pthread *stack) __nptl_stack_list_add (&stack->list, &GL (dl_stack_cache)); GL (dl_stack_cache_actsize) += stack->stackblock_size; - if (__glibc_unlikely (GL (dl_stack_cache_actsize) > stack_cache_maxsize)) - __nptl_free_stacks (stack_cache_maxsize); + if (__glibc_unlikely (GL (dl_stack_cache_actsize) + > __nptl_stack_cache_maxsize)) + __nptl_free_stacks (__nptl_stack_cache_maxsize); } void diff --git a/nptl/nptl-stack.h b/nptl/nptl-stack.h index a6bd8df77f..8bcfde7ec5 100644 --- a/nptl/nptl-stack.h +++ b/nptl/nptl-stack.h @@ -25,6 +25,9 @@ #include <list.h> #include <stdbool.h> +/* Maximum size of the cache, in bytes. 40 MiB by default. */ +extern size_t __nptl_stack_cache_maxsize attribute_hidden; + /* Check whether the stack is still used or not. */ static inline bool __nptl_stack_in_use (struct pthread *pd) diff --git a/nptl/pthread_mutex_conf.c b/nptl/pthread_mutex_conf.c index e6235dea47..c8f171c995 100644 --- a/nptl/pthread_mutex_conf.c +++ b/nptl/pthread_mutex_conf.c @@ -23,6 +23,7 @@ #include <stdbool.h> #include <unistd.h> /* Get STDOUT_FILENO for _dl_printf. */ #include <elf/dl-tunables.h> +#include <nptl-stack.h> struct mutex_config __mutex_aconf = { @@ -38,10 +39,18 @@ TUNABLE_CALLBACK (set_mutex_spin_count) (tunable_val_t *valp) __mutex_aconf.spin_count = (int32_t) (valp)->numval; } +static void +TUNABLE_CALLBACK (set_stack_cache_size) (tunable_val_t *valp) +{ + __nptl_stack_cache_maxsize = valp->numval; +} + void __pthread_tunables_init (void) { TUNABLE_GET (mutex_spin_count, int32_t, TUNABLE_CALLBACK (set_mutex_spin_count)); + TUNABLE_GET (stack_cache_size, size_t, + TUNABLE_CALLBACK (set_stack_cache_size)); } #endif |