From: Martin Quinson Date: Mon, 14 Dec 2015 21:54:38 +0000 (+0100) Subject: make it compile when SMPI is disabled X-Git-Tag: v3_13~1449 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/da53a4f6b5382cbce67984df93cccb7ad2550abf?hp=03722e3f74cb7af3bbc303673b4dc3f8fa62227b;ds=sidebyside make it compile when SMPI is disabled --- diff --git a/src/simix/smx_process.cpp b/src/simix/smx_process.cpp index bc84eb7727..3f74714d1c 100644 --- a/src/simix/smx_process.cpp +++ b/src/simix/smx_process.cpp @@ -273,6 +273,7 @@ smx_process_t SIMIX_process_create( process->ppid = SIMIX_process_get_PID(parent_process); /* SMPI process have their own data segment and each other inherit from their father */ +#ifdef HAVE_SMPI if(smpi_privatize_global_variables){ if( parent_process->pid != 0){ SIMIX_segment_index_set(process, parent_process->segment_index); @@ -280,6 +281,7 @@ smx_process_t SIMIX_process_create( SIMIX_segment_index_set(process, process->pid - 1); } } +#endif } else { process->ppid = -1; }