Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics: this is an ID, not a ptr
[simgrid.git] / src / mc / transition / TransitionSynchro.hpp
index 8742e65..66ed64c 100644 (file)
@@ -35,7 +35,7 @@ public:
 };
 
 class SemaphoreTransition : public Transition {
-  uintptr_t sem_;
+  unsigned int sem_; // ID
   bool granted_;
 
 public: