Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
close gforge bug 18137 (allow different stack sizes): that was possible since years...
[simgrid.git] / src / kernel / context / ContextThread.cpp
index 798b050..f31f2e3 100644 (file)
@@ -24,6 +24,8 @@ namespace context {
 
 ThreadContextFactory::ThreadContextFactory() : ContextFactory()
 {
+  if (smx_context_stack_size != 8 * 1024 * 1024)
+    XBT_INFO("Stack size modifications are ignored by thread factory.");
   if (SIMIX_context_is_parallel())
     ParallelThreadContext::initialize();
 }