Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Don't have an extra actor in s4u-synchro-mutex to create the others
[simgrid.git] / src / mc / remote / AppSide.hpp
index a647b32f54fb40927f4ec68c4026ee066a6ecdf3..beeb920097b870b2e02a7239db8c905cd05d25d7 100644 (file)
@@ -1,6 +1,6 @@
 /* mc::remote::AppSide: the Application-side of the channel                 */
 
-/* Copyright (c) 2015-2021. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2015-2022. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -31,9 +31,9 @@ public:
 
 private:
   void handle_deadlock_check(const s_mc_message_t* msg) const;
-  void handle_continue(const s_mc_message_t* msg) const;
-  void handle_simcall(const s_mc_message_simcall_handle_t* message) const;
+  void handle_simcall_execute(const s_mc_message_simcall_execute_t* message) const;
   void handle_actor_enabled(const s_mc_message_actor_enabled_t* msg) const;
+  void handle_finalize(const s_mc_message_int_t* msg) const;
 
 public:
   Channel const& get_channel() const { return channel_; }
@@ -50,7 +50,7 @@ public:
 
   // Singleton :/
   // TODO, remove the singleton antipattern.
-  static AppSide* initialize();
+  static AppSide* initialize(xbt_dynar_t actors_addr);
   static AppSide* get() { return instance_.get(); }
 };
 } // namespace mc