X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dd88e15504912f111b8dcb568c2a8adbc111ed66..0e8f25088a5fcac96419b8243a2838acd637fa88:/src/simix/smx_process_private.h diff --git a/src/simix/smx_process_private.h b/src/simix/smx_process_private.h index a971ba3e5e..5365da12fe 100644 --- a/src/simix/smx_process_private.h +++ b/src/simix/smx_process_private.h @@ -22,9 +22,9 @@ typedef struct s_smx_process { smx_host_t smx_host; /* the host on which the process is running */ smx_context_t context; /* the context (either uctx or thread) that executes the user function */ xbt_running_ctx_t *running_ctx; - int doexception:1; - int blocked:1; - int suspended:1; + unsigned doexception:1; + unsigned blocked:1; + unsigned suspended:1; smx_host_t new_host; /* if not null, the host on which the process must migrate to */ smx_action_t waiting_action; /* the current blocking action if any */ xbt_fifo_t comms; /* the current non-blocking communication actions */ @@ -50,6 +50,7 @@ void SIMIX_process_create(smx_process_t *process, xbt_main_func_t code, void *data, const char *hostname, + double kill_time, int argc, char **argv, xbt_dict_t properties); void SIMIX_process_runall(void);