Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
GRAS is not the only one using libdata. AMOK does too, and other could. So, it is...
[simgrid.git] / src / gras / Virtu / rl_process.c
index 49f6e90..1318080 100644 (file)
@@ -16,7 +16,7 @@ static gras_procdata_t *_gras_procdata = NULL;
 char const *_gras_procname = NULL;
 
 void gras_process_init() {
-  _gras_procdata=xbt_new(gras_procdata_t,1);
+  _gras_procdata=xbt_new0(gras_procdata_t,1);
   gras_procdata_init();
 }
 void gras_process_exit() {
@@ -29,8 +29,8 @@ const char *xbt_procname(void) {
   else return "";
 }
 
-int gras_os_getpid(void) {
-  return getpid();
+long int gras_os_getpid(void) {
+  return (long int) getpid();
 }
 
 /* **************************************************************************