* Implement some random initial distribution of load
Options -r seed, -R [algo ?]
-* Terminate smoothly on ctrl+c.
-
* Support heterogeneous platforms?
Not sure yet.
Should be doable if each process also sends its speed to its neighbors.
-#include <cstring>
+#include <cerrno>
+#include <cstring> // strchr
#include <iostream>
+#include <signal.h>
#include <stdexcept>
#include <msg/msg.h>
#include <xbt/log.h>
EXIT_FAILURE_INIT = 0x02, // failed to initialize simulator
EXIT_FAILURE_SIMU = 0x04, // simulation failed
EXIT_FAILURE_CLEAN = 0x08, // error at cleanup
+ EXIT_FAILURE_OTHER = 0x10, // other error
};
// Cannot be globally initialized...
total_running, running_ratio);
}
+static void signal_handler(int /*sig*/)
+{
+ if (!opt::exit_request) {
+ XBT_CRITICAL(">>>>>>>>>>"
+ " caught CTRL-C: global exit requested "
+ "<<<<<<<<<<");
+ opt::exit_request = true;
+ }
+}
+
+static void install_signal_handler()
+{
+ struct sigaction action;
+ action.sa_handler = signal_handler;
+ sigemptyset(&action.sa_mask);
+ action.sa_flags = SA_RESTART;
+ if (sigaction (SIGINT, &action, NULL) == -1) {
+ std::cerr << "sigaction: " << strerror(errno) << "\n";
+ exit(EXIT_FAILURE_OTHER);
+ }
+}
+
#define PR_STATS(descr, st) \
XBT_INFO("| %.*s: %g / %g / %g", DATA_DESCR_WIDTH, \
descr " (total/avg./stddev)................................", \
// Note: MSG_global_init() may throw an exception, but it seems
// impossible to catch it correctly :-(
MSG_global_init(&argc, argv);
+ install_signal_handler();
// Parse global parameters
bool parse_res = opt::parse_args(&argc, argv);