Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
get rid of simix_global and smx_private.hpp
[simgrid.git] / src / instr / instr_paje_events.hpp
index 266f328..17aab29 100644 (file)
@@ -95,12 +95,12 @@ class LinkEvent : public PajeEvent {
   Container* endpoint_;
   std::string value_;
   std::string key_;
-  int size_ = -1;
+  size_t size_;
 
 public:
   LinkEvent(Container* container, Type* type, PajeEventType event_type, Container* sourceContainer,
-            const std::string& value, const std::string& key, int size)
-      : PajeEvent(container, type, SIMIX_get_clock(), event_type)
+            const std::string& value, const std::string& key, size_t size = static_cast<size_t>(-1))
+      : PajeEvent(container, type, simgrid_get_clock(), event_type)
       , endpoint_(sourceContainer)
       , value_(value)
       , key_(key)