X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/373ed09fef634fb125c5039bbc722fbe49e93120..8802406ce606cc44533b47d4c6f9d3f58a4bdfde:/src/simix/smx_process_private.h diff --git a/src/simix/smx_process_private.h b/src/simix/smx_process_private.h index de9b038c6a..aedee85c0b 100644 --- a/src/simix/smx_process_private.h +++ b/src/simix/smx_process_private.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team. +/* Copyright (c) 2007-2010, 2012-2013. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -90,6 +90,7 @@ void SIMIX_pre_process_suspend(smx_simcall_t simcall, smx_process_t process); smx_action_t SIMIX_process_suspend(smx_process_t process, smx_process_t issuer); void SIMIX_process_resume(smx_process_t process, smx_process_t issuer); int SIMIX_process_get_PID(smx_process_t self); +int SIMIX_process_get_PPID(smx_process_t self); void* SIMIX_process_get_data(smx_process_t process); void SIMIX_process_set_data(smx_process_t process, void *data); smx_host_t SIMIX_process_get_host(smx_process_t process); @@ -119,6 +120,7 @@ void SIMIX_pre_process_resume(smx_simcall_t simcall, smx_process_t process); int SIMIX_pre_process_count(smx_simcall_t simcall); void* SIMIX_pre_process_self_get_data(smx_simcall_t simcall, smx_process_t process); int SIMIX_pre_process_get_PID(smx_simcall_t simcall, smx_process_t self); +int SIMIX_pre_process_get_PPID(smx_simcall_t simcall, smx_process_t self); void* SIMIX_pre_process_get_data(smx_simcall_t simcall, smx_process_t process); void SIMIX_pre_process_set_data(smx_simcall_t simcall, smx_process_t process, void *data);