Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
popping_enum.h becomes an hpp.
[simgrid.git] / src / simix / popping_enum.hpp
1 /**********************************************************************/
2 /* File generated by src/simix/simcalls.py from src/simix/simcalls.in */
3 /*                                                                    */
4 /*                    DO NOT EVER CHANGE THIS FILE                    */
5 /*                                                                    */
6 /* change simcalls specification in src/simix/simcalls.in             */
7 /* Copyright (c) 2014-2020. The SimGrid Team. All rights reserved.    */
8 /**********************************************************************/
9
10 /*
11  * Note that the name comes from http://en.wikipedia.org/wiki/Popping
12  * Indeed, the control flow is doing a strange dance in there.
13  *
14  * That's not about http://en.wikipedia.org/wiki/Poop, despite the odor :)
15  */
16
17 /**
18  * @brief All possible simcalls.
19  */
20 enum e_smx_simcall_t {
21   SIMCALL_NONE,
22   SIMCALL_EXECUTION_WAITANY_FOR,
23   SIMCALL_COMM_SEND,
24   SIMCALL_COMM_ISEND,
25   SIMCALL_COMM_RECV,
26   SIMCALL_COMM_IRECV,
27   SIMCALL_COMM_WAITANY,
28   SIMCALL_COMM_WAIT,
29   SIMCALL_COMM_TEST,
30   SIMCALL_COMM_TESTANY,
31   SIMCALL_MUTEX_LOCK,
32   SIMCALL_MUTEX_TRYLOCK,
33   SIMCALL_MUTEX_UNLOCK,
34   SIMCALL_COND_WAIT,
35   SIMCALL_COND_WAIT_TIMEOUT,
36   SIMCALL_SEM_ACQUIRE,
37   SIMCALL_SEM_ACQUIRE_TIMEOUT,
38   SIMCALL_MC_RANDOM,
39   SIMCALL_RUN_KERNEL,
40   SIMCALL_RUN_BLOCKING,
41   NUM_SIMCALLS
42 };