X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/80f12741b28d98e2d8677bc987afcbedd02e25fb..150a737f93e8e354d4d7ae45e74239f562bd2b87:/src/gras/Virtu/rl_process.c diff --git a/src/gras/Virtu/rl_process.c b/src/gras/Virtu/rl_process.c index b6e53a993f..fdb33f14a9 100644 --- a/src/gras/Virtu/rl_process.c +++ b/src/gras/Virtu/rl_process.c @@ -11,31 +11,30 @@ #include "gras/Virtu/virtu_rl.h" #include "portable.h" -XBT_LOG_EXTERNAL_CATEGORY(process); -XBT_LOG_DEFAULT_CATEGORY(process); - /* globals */ static gras_procdata_t *_gras_procdata = NULL; char const *_gras_procname = NULL; -xbt_error_t gras_process_init() { - _gras_procdata=xbt_new(gras_procdata_t,1); +void gras_process_init() { + _gras_procdata=xbt_new0(gras_procdata_t,1); gras_procdata_init(); - return no_error; } -xbt_error_t gras_process_exit() { +void gras_process_exit() { gras_procdata_exit(); free(_gras_procdata); - return no_error; } const char *xbt_procname(void) { if(_gras_procname) return _gras_procname; - else return "(null)"; + else return ""; } -int gras_os_getpid(void) { - return getpid(); +long int gras_os_getpid(void) { + #ifdef _WIN32 + return (long int) GetCurrentProcess(); + #else + return (long int) getpid(); + #endif } /* **************************************************************************