From: Arnaud Giersch Date: Thu, 26 Sep 2013 09:49:34 +0000 (+0200) Subject: Setting the stack size works for threads too, since commit 3cdd0ac83adfa4f28b05b4c196... X-Git-Tag: v3_9_90~63^2~4 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/bad70aec7cdab80f82dd88cdb2c1629377ccfe39 Setting the stack size works for threads too, since commit 3cdd0ac83adfa4f28b05b4c1961555e5203bc6a8. --- diff --git a/src/simgrid/sg_config.c b/src/simgrid/sg_config.c index c56c6496f5..77d8befa7e 100644 --- a/src/simgrid/sg_config.c +++ b/src/simgrid/sg_config.c @@ -608,7 +608,7 @@ void sg_config_init(int *argc, char **argv) /* stack size of contexts in Ko */ xbt_cfg_register(&_sg_cfg_set, "contexts/stack_size", - "Stack size of contexts in Kib (ucontext or raw only)", + "Stack size of contexts in Kib", xbt_cfgelm_int, 1, 1, _sg_cfg_cb_context_stack_size, NULL); xbt_cfg_setdefault_int(_sg_cfg_set, "contexts/stack_size", 128);