Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
simplify calls to CommImpl::isend and CommImpl::irecv
[simgrid.git] / src / simix / popping_enum.hpp
index 44ddc0a..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,21 +21,16 @@ namespace simix {
  */
 enum class Simcall {
   NONE,
-  EXECUTION_WAITANY_FOR,
   COMM_RECV,
   COMM_IRECV,
   COMM_SEND,
   COMM_ISEND,
-  COMM_TEST,
-  COMM_TESTANY,
   COMM_WAITANY,
   COMM_WAIT,
-  COND_WAIT_TIMEOUT,
-  SEM_ACQUIRE_TIMEOUT,
   RUN_KERNEL,
   RUN_BLOCKING,
 };
 
-constexpr int NUM_SIMCALLS = 14;
+constexpr int NUM_SIMCALLS = 9;
 } // namespace simix
 } // namespace simgrid