X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a78e55a602586cf557968132c2d8c30af758af25..ce354758f86f0fad1ea536f1cbc0a337267b9987:/src/mc/api/RemoteApp.hpp diff --git a/src/mc/api/RemoteApp.hpp b/src/mc/api/RemoteApp.hpp index 62758d5721..693a2202a7 100644 --- a/src/mc/api/RemoteApp.hpp +++ b/src/mc/api/RemoteApp.hpp @@ -29,6 +29,10 @@ private: std::unique_ptr checker_side_; PageStore page_store_{500}; std::shared_ptr initial_snapshot_; + std::unique_ptr application_factory_; // when no meminfo, create checker_side_ by cloning this one + int master_socket_ = -1; + + const std::vector app_args_; // No copy: RemoteApp(RemoteApp const&) = delete; @@ -42,12 +46,11 @@ public: * * The code is expected to `exec` the model-checked application. */ - explicit RemoteApp(const std::vector& args); + explicit RemoteApp(const std::vector& args, bool need_memory_introspection); ~RemoteApp(); - void start(); - void restore_initial_state() const; + void restore_initial_state(); void wait_for_requests(); /** Ask to the application to check for a deadlock. If so, do an error message and throw a DeadlockError. */ @@ -55,8 +58,6 @@ public: /** Ask the application to run post-mortem analysis, and maybe to stop ASAP */ void finalize_app(bool terminate_asap = false); - /** Forcefully kill the application (after running post-mortem analysis)*/ - void shutdown(); /** Retrieve the max PID of the running actors */ unsigned long get_maxpid() const; @@ -68,7 +69,7 @@ public: Transition* handle_simcall(aid_t aid, int times_considered, bool new_transition); /* Get the memory of the remote process */ - RemoteProcessMemory& get_remote_process_memory() { return checker_side_->get_remote_memory(); } + RemoteProcessMemory* get_remote_process_memory() { return checker_side_->get_remote_memory(); } PageStore& get_page_store() { return page_store_; } };