Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Modernize simcall_execution_test().
[simgrid.git] / src / simix / popping_enum.h
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 typedef enum {
21   SIMCALL_NONE,
22   SIMCALL_EXECUTION_WAIT,
23   SIMCALL_EXECUTION_WAITANY_FOR,
24   SIMCALL_COMM_SEND,
25   SIMCALL_COMM_ISEND,
26   SIMCALL_COMM_RECV,
27   SIMCALL_COMM_IRECV,
28   SIMCALL_COMM_WAITANY,
29   SIMCALL_COMM_WAIT,
30   SIMCALL_COMM_TEST,
31   SIMCALL_COMM_TESTANY,
32   SIMCALL_MUTEX_LOCK,
33   SIMCALL_MUTEX_TRYLOCK,
34   SIMCALL_MUTEX_UNLOCK,
35   SIMCALL_COND_WAIT,
36   SIMCALL_COND_WAIT_TIMEOUT,
37   SIMCALL_SEM_ACQUIRE,
38   SIMCALL_SEM_ACQUIRE_TIMEOUT,
39   SIMCALL_IO_WAIT,
40   SIMCALL_IO_TEST,
41   SIMCALL_MC_RANDOM,
42   SIMCALL_RUN_KERNEL,
43   SIMCALL_RUN_BLOCKING,
44   NUM_SIMCALLS
45 } e_smx_simcall_t;