Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MC does not need a mc_value_ in the simcall anymore
[simgrid.git] / src / simix / popping_enum.hpp
index 15c9ca8..aac349c 100644 (file)
@@ -4,7 +4,7 @@
 /*                    DO NOT EVER CHANGE THIS FILE                    */
 /*                                                                    */
 /* change simcalls specification in src/simix/simcalls.in             */
-/* Copyright (c) 2014-2021. The SimGrid Team. All rights reserved.    */
+/* Copyright (c) 2014-2022. The SimGrid Team. All rights reserved.    */
 /**********************************************************************/
 
 /*
@@ -21,27 +21,16 @@ namespace simix {
  */
 enum class Simcall {
   NONE,
-  EXECUTION_WAITANY_FOR,
-  COMM_SEND,
-  COMM_ISEND,
   COMM_RECV,
   COMM_IRECV,
+  COMM_SEND,
+  COMM_ISEND,
   COMM_WAITANY,
   COMM_WAIT,
-  COMM_TEST,
-  COMM_TESTANY,
-  MUTEX_LOCK,
-  MUTEX_TRYLOCK,
-  MUTEX_UNLOCK,
-  COND_WAIT,
-  COND_WAIT_TIMEOUT,
-  SEM_ACQUIRE,
-  SEM_ACQUIRE_TIMEOUT,
-  MC_RANDOM,
   RUN_KERNEL,
   RUN_BLOCKING,
 };
 
-constexpr int NUM_SIMCALLS = 20;
+constexpr int NUM_SIMCALLS = 9;
 } // namespace simix
 } // namespace simgrid