X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bce83a1a83e9a84ec823da05866fb90f6f82c5e5..ccf56140eb0b973a50ce9a981fa3e38667748495:/src/gras/Virtu/rl_process.c diff --git a/src/gras/Virtu/rl_process.c b/src/gras/Virtu/rl_process.c index 131808002c..4f542afe29 100644 --- a/src/gras/Virtu/rl_process.c +++ b/src/gras/Virtu/rl_process.c @@ -13,7 +13,7 @@ /* globals */ static gras_procdata_t *_gras_procdata = NULL; -char const *_gras_procname = NULL; +XBT_EXPORT_NO_IMPORT(char const *) _gras_procname = NULL; void gras_process_init() { _gras_procdata=xbt_new0(gras_procdata_t,1); @@ -29,8 +29,12 @@ const char *xbt_procname(void) { else return ""; } -long int gras_os_getpid(void) { - return (long int) getpid(); +int gras_os_getpid(void) { +#ifdef _WIN32 + return (long int) GetCurrentProcess(); +#else + return (long int) getpid(); +#endif } /* ************************************************************************** @@ -42,3 +46,8 @@ gras_procdata_t *gras_procdata_get(void) { return _gras_procdata; } + +void gras_agent_spawn(const char *name, void *data, + xbt_main_func_t code, int argc, char *argv[]) { + THROW_UNIMPLEMENTED; +}