Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
stringify tracing category
[simgrid.git] / src / kernel / resource / Action.cpp
index 1752c19..7f6fa06 100644 (file)
@@ -42,8 +42,6 @@ Action::~Action()
   get_model()->get_action_heap().remove(this);
   if (modified_set_hook_.is_linked())
     simgrid::xbt::intrusive_erase(*get_model()->get_modified_set(), *this);
-
-  xbt_free(category_);
 }
 
 void Action::finish(Action::State state)
@@ -111,11 +109,6 @@ void Action::set_bound(double bound)
   XBT_OUT();
 }
 
-void Action::set_category(const char* category)
-{
-  category_ = xbt_strdup(category);
-}
-
 void Action::ref()
 {
   refcount_++;