X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dd89516cade805920cd23e69dd7eadabe83cad85..09f32d96bbc399a919b44b12f63ea054dcefda76:/src/msg/private.h diff --git a/src/msg/private.h b/src/msg/private.h index ad8c31ead6..d7fa359e6b 100644 --- a/src/msg/private.h +++ b/src/msg/private.h @@ -18,17 +18,11 @@ /**************** datatypes **********************************/ -typedef enum { - HOST_DOWN = 0, - HOST_ALIVE = 1 -} m_host_state_t; - typedef struct simdata_host { void *host; /* SURF modeling */ xbt_fifo_t *mbox; /* array of FIFOs used as a mailboxes */ m_process_t *sleeping; /* array of process used to know whether a local process is waiting for a communication on a channel */ - m_host_state_t state; xbt_fifo_t process_list; } s_simdata_host_t; @@ -40,6 +34,8 @@ typedef struct simdata_task { double message_size; /* Data size */ double computation_amount; /* Computation size */ xbt_dynar_t sleeping; /* process to wake-up */ + m_process_t sender; + int using; } s_simdata_task_t; /******************************* Process *************************************/ @@ -50,8 +46,10 @@ typedef struct simdata_process { int PID; /* used for debugging purposes */ int PPID; /* The parent PID */ m_task_t waiting_task; - m_host_t put_host; /* used for debugging purposes */ - int put_channel; /* used for debugging purposes */ + int blocked; + int suspended; + m_host_t put_host; /* used for debugging purposes */ + m_channel_t put_channel; /* used for debugging purposes */ int argc; /* arguments number if any */ char **argv; /* arguments table if any */ MSG_error_t last_errno; /* the last value returned by a MSG_function */ @@ -60,13 +58,12 @@ typedef struct simdata_process { /************************** Global variables ********************************/ typedef struct MSG_Global { xbt_fifo_t host; - xbt_fifo_t link; xbt_fifo_t process_to_run; xbt_fifo_t process_list; int max_channel; m_process_t current_process; xbt_dict_t registered_functions; -} s_MSG_global_t, *MSG_Global_t; +} s_MSG_Global_t, *MSG_Global_t; extern MSG_Global_t msg_global; @@ -77,7 +74,9 @@ extern MSG_Global_t msg_global; #define MSG_RETURN(val) do {PROCESS_SET_ERRNO(val);return(val);} while(0) /* #define CHECK_ERRNO() ASSERT((PROCESS_GET_ERRNO()!=MSG_HOST_FAILURE),"Host failed, you cannot call this function.") */ -#define CHECK_HOST() xbt_assert0((MSG_host_self()->simdata->state==HOST_ALIVE),"Host failed, you cannot call this function.") +#define CHECK_HOST() xbt_assert0(surf_workstation_resource->extension_public-> \ + get_state(MSG_host_self()->simdata->host)==SURF_CPU_ON,\ + "Host failed, you cannot call this function.") m_host_t __MSG_host_create(const char *name, void *workstation, void *data); @@ -86,4 +85,8 @@ void __MSG_task_execute(m_process_t process, m_task_t task); MSG_error_t __MSG_wait_for_computation(m_process_t process, m_task_t task); MSG_error_t __MSG_task_wait_event(m_process_t process, m_task_t task); +MSG_error_t __MSG_process_block(void); +MSG_error_t __MSG_process_unblock(m_process_t process); +int __MSG_process_isBlocked(m_process_t process); + #endif