Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Clean leftovers
[simgrid.git] / src / mc / remote / RemoteProcess.hpp
index 3a6b24e..b9dca02 100644 (file)
@@ -71,7 +71,7 @@ private:
 public:
   explicit RemoteProcess(pid_t pid);
   ~RemoteProcess() override;
-  void init(xbt_mheap_t mmalloc_default_mdp, unsigned long* maxpid);
+  void init(xbt_mheap_t mmalloc_default_mdp);
 
   RemoteProcess(RemoteProcess const&) = delete;
   RemoteProcess(RemoteProcess&&)      = delete;
@@ -159,16 +159,6 @@ public:
 
   void ignore_local_variable(const char* var_name, const char* frame_name) const;
 
-  /* ***************** */
-  /* SIMIX-related API */
-  /* ***************** */
-private:
-  // Cache the address of the variables we read directly in the memory of remote
-  RemotePtr<unsigned long> maxpid_addr_;
-
-public:
-  unsigned long get_maxpid() const { return this->read(maxpid_addr_); }
-
   void dump_stack() const;
 
 private: