Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Now returns true if the file could be opened
[simgrid.git] / src / xbt / xbt_virtu.cpp
index 557a2d3..5902f3a 100644 (file)
@@ -1,6 +1,6 @@
 /* virtualization layer for XBT */
 
-/* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2007-2020. 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,7 +11,7 @@
 
 int xbt_getpid()
 {
-  smx_actor_t self = SIMIX_process_self();
+  const simgrid::kernel::actor::ActorImpl* self = SIMIX_process_self();
   return self == nullptr ? 0 : self->get_pid();
 }