Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Destruction of a relic of the revolution gras->xbt
[simgrid.git] / include / gras / process.h
index 761647f..5c7047b 100644 (file)
@@ -23,14 +23,14 @@ BEGIN_DECL
  * 
  * Perform the various intialisations needed by gras. Each process must run it
  */
-gras_error_t gras_process_init(void);
+xbt_error_t gras_process_init(void);
 
 /**
  * gras_process_exit:
  * 
  * Frees the memory allocated by gras. Processes should run it
  */
-gras_error_t gras_process_exit(void);
+xbt_error_t gras_process_exit(void);
 
 /****************************************************************************/
 /* Manipulating User Data                                                   */
@@ -55,7 +55,7 @@ void gras_userdata_set(void *ud);
  * Malloc and set the data associated with the current process.
  */
 
-#define gras_userdata_new(type) (gras_userdata_set(malloc(sizeof(type))),gras_userdata_get())
+#define gras_userdata_new(type) (gras_userdata_set(xbt_new0(type,1)),gras_userdata_get())
 
 END_DECL