Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
disable the maestro-set test on windows, nobody will ever use it there
[simgrid.git] / src / simix / smx_global.cpp
index 3ed4bf4..bfb56d5 100644 (file)
@@ -176,6 +176,9 @@ XBT_PUBLIC(void) set_maestro(std::function<void()> code)
 
 void SIMIX_set_maestro(void (*code)(void*), void* data)
 {
+#ifdef _WIN32
+  INFO("WARNING, SIMIX_set_maestro is believed to not work on windows. Please help us investigating this issue if you need that feature");
+#endif
   maestro_code = std::bind(code, data);
 }