Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
I think I just killed a simcall
[simgrid.git] / src / mc / mc_state.h
index a2bd0ed..68198c7 100644 (file)
@@ -1,5 +1,4 @@
-/* Copyright (c) 2007-2015. The SimGrid Team.
- * All rights reserved.                                                     */
+/* Copyright (c) 2007-2017. 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. */
@@ -121,7 +120,7 @@ struct XBT_PRIVATE State {
   int num = 0;
 
   /** State's exploration status by process */
-  std::vector<ProcessState> processStates;
+  std::vector<ProcessState> actorStates;
 
   Transition transition;
 
@@ -148,8 +147,8 @@ struct XBT_PRIVATE State {
   State(unsigned long state_number);
 
   std::size_t interleaveSize() const;
-  void interleave(smx_actor_t process) {
-    this->processStates[process->pid].consider();
+  void interleave(smx_actor_t actor) {
+    this->actorStates[actor->pid].consider();
   }
   Transition getTransition() const;
 };