X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cdd4d20278cbee5a9f11f9f455bff8836410568c..39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f:/src/xbt/xbt_virtu.cpp diff --git a/src/xbt/xbt_virtu.cpp b/src/xbt/xbt_virtu.cpp index 557a2d3e03..1b983a0ecc 100644 --- a/src/xbt/xbt_virtu.cpp +++ b/src/xbt/xbt_virtu.cpp @@ -1,6 +1,6 @@ /* virtualization layer for XBT */ -/* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2021. The SimGrid Team. All rights reserved. */ /* 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. */ @@ -11,8 +11,8 @@ int xbt_getpid() { - smx_actor_t self = SIMIX_process_self(); - return self == nullptr ? 0 : self->get_pid(); + const simgrid::kernel::actor::ActorImpl* self = SIMIX_process_self(); + return self == nullptr ? 0 : static_cast(self->get_pid()); } const char* xbt_procname(void)