1 #ifndef SIMGRID_FEATURES_H
2 #define SIMGRID_FEATURES_H
4 /* What is defined here:
5 * =====================
7 * MSG_WAIT_DESTROYS_COMMS 1 if MSG_wait destroys communications
8 * (has changed after SimGrid 3.5)
11 #if !defined(SIMGRID_VERSION) // ========== SimGrid <= 3.5 ============= //
13 #define MSG_WAIT_DESTROYS_COMMS 1
15 #else // ================================= SimGrid > 3.5 ============== //
17 #define MSG_WAIT_DESTROYS_COMMS 0
19 #endif // ============================================================= //
21 #endif // !SIMGRID_FEATURES_H