X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8df87e176f27b25534f27d7e240defa32ca35bc..2df88396d94796a341f1dbaa1d41f3162745d927:/src/xbt/xbt_virtu.c diff --git a/src/xbt/xbt_virtu.c b/src/xbt/xbt_virtu.c index 628911fb63..9032b7820c 100644 --- a/src/xbt/xbt_virtu.c +++ b/src/xbt/xbt_virtu.c @@ -5,15 +5,17 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include "simgrid/msg.h" +#include "simgrid/actor.h" +#include "simgrid/simix.h" #include "xbt/virtu.h" int xbt_getpid() { - return MSG_process_self_PID(); + smx_actor_t self = SIMIX_process_self(); + return self == NULL ? 0 : sg_actor_self_get_pid(); } const char *xbt_procname(void) { - return MSG_process_self_name(); + return SIMIX_process_self_get_name(); }