Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Oops, we need to store a pointer to the simix process in the smpi process now.
[simgrid.git] / src / smpi / smpi_process.hpp
index ca557a1..f31e8dd 100644 (file)
@@ -37,6 +37,7 @@ class Process {
     msg_bar_t finalization_barrier_;
     int return_value_;
     smpi_trace_call_location_t trace_call_loc_;
+    smx_actor_t process_;
 #if HAVE_PAPI
   /** Contains hardware data as read by PAPI **/
     int papi_event_set_;
@@ -77,6 +78,7 @@ class Process {
     int return_value();
     void set_return_value(int val);
     static void init(int *argc, char ***argv);
+    smx_actor_t process();
 };