Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Clean leftovers
authorMartin Quinson <martin.quinson@ens-rennes.fr>
Sun, 12 Mar 2023 20:50:18 +0000 (21:50 +0100)
committerMartin Quinson <martin.quinson@ens-rennes.fr>
Sun, 12 Mar 2023 20:50:34 +0000 (21:50 +0100)
src/mc/ModelChecker.cpp
src/mc/remote/RemoteProcess.hpp

index 8fca2ee..243a22e 100644 (file)
@@ -279,7 +279,7 @@ void ModelChecker::handle_waitpid()
       }
 #endif
 
-      // We don't care about signals, just reinject them:
+      // We don't care about non-lethal signals, just reinject them:
       if (WIFSTOPPED(status)) {
         XBT_DEBUG("Stopped with signal %i", (int) WSTOPSIG(status));
         errno = 0;
index 615575c..b9dca02 100644 (file)
@@ -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: