]> AND Private Git Repository - loba.git/blob - simgrid_features.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
56fcbfbc71eac9905cd3ca48f4f13f83c02e44c7
[loba.git] / simgrid_features.h
1 #ifndef SIMGRID_FEATURES_H
2 #define SIMGRID_FEATURES_H
3
4 /* What is defined here:
5  * =====================
6  *
7  * MSG_WAIT_DESTROYS_COMMS      1 if MSG_wait destroys communications
8  *                              (has changed after SimGrid 3.5)
9  */
10
11 #if !defined(SIMGRID_VERSION) // ========== SimGrid <= 3.5 ============= //
12
13 #define MSG_WAIT_DESTROYS_COMMS 1
14
15 #else  // ================================= SimGrid > 3.5 ============== //
16
17 #define MSG_WAIT_DESTROYS_COMMS 0
18
19 #endif  // ============================================================= //
20
21 #endif // !SIMGRID_FEATURES_H
22
23 // Local variables:
24 // mode: c++
25 // End: