Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Interface revolution: do not try to survive to malloc failure
[simgrid.git] / src / gras / Virtu / rl_process.c
index 359c220..3297932 100644 (file)
@@ -8,24 +8,21 @@
 /* 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. */
 
-#include "Virtu/virtu_rl.h"
+#include "gras/Virtu/virtu_rl.h"
+
+GRAS_LOG_EXTERNAL_CATEGORY(process);
+GRAS_LOG_DEFAULT_CATEGORY(process);
 
-GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(process,GRAS);
-                             
 /* globals */
 static gras_procdata_t *_gras_procdata = NULL;
 
 gras_error_t gras_process_init() {
-  gras_error_t errcode;
-
-  if (!(_gras_procdata=(gras_procdata_t *)malloc(sizeof(gras_procdata_t))))
-    RAISE_MALLOC;
-
-  TRY(gras_procdata_init());
+  _gras_procdata=gras_new(gras_procdata_t,1);
+  gras_procdata_init();
   return no_error;
 }
 gras_error_t gras_process_exit() {
-  WARN0("FIXME: not implemented (=> leaking on exit :)");
+  gras_procdata_exit();
   return no_error;
 }