Browse Source

socl/src: add warning to free memory

Nathalie Furmento 13 years ago
parent
commit
f2e74c77aa
2 changed files with 2 additions and 0 deletions
  1. 1 0
      socl/src/gc.c
  2. 1 0
      socl/src/task.c

+ 1 - 0
socl/src/gc.c

@@ -61,6 +61,7 @@ static void * gc_thread_routine(void *UNUSED(arg)) {
 
       /* Release entity */
       entity next = r->next;
+#warning FIXME: free memory
 //      free(r);
 
       r = next;

+ 1 - 0
socl/src/task.c

@@ -120,6 +120,7 @@ static void cputask_task(__attribute__((unused)) void *descr[], void *args) {
 
   arg->callback(arg->arg);
 
+#warning FIXME: free memory
 /*
   if (arg->free_arg)
     free(arg->arg);