Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
adding test example to trace process migration using the mask TRACE_PROCESS
[simgrid.git] / include / gras / module.h
index 3e45c9b..6c59081 100644 (file)
@@ -10,12 +10,13 @@ XBT_PUBLIC(void) gras_module_leave(const char *name);
 
 
 /* Functions module implementor should use */
-XBT_PUBLIC(void) gras_module_add(const char *name, unsigned int data_size, int *ID,
-                    void_f_void_t  init_f, void_f_void_t  exit_f,
-                    void_f_pvoid_t join_f, void_f_pvoid_t leave_f) ;
+XBT_PUBLIC(void) gras_module_add(const char *name, unsigned int data_size,
+                                 int *ID, void_f_void_t init_f,
+                                 void_f_void_t exit_f, void_f_pvoid_t join_f,
+                                 void_f_pvoid_t leave_f);
 
 
-XBT_PUBLIC(void*)gras_moddata_by_id(unsigned int ID);
+XBT_PUBLIC(void *) gras_moddata_by_id(unsigned int ID);
 
 
 #endif /* GRAS_MODULE_H */