Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
little sentence to hint about the location of missing documentation
[simgrid.git] / tools / gras / s_smx_process_t
1 struct s_smx_process_t {
2   s_xbt_swag_hookup_t process_hookup;
3   s_xbt_swag_hookup_t synchro_hookup;
4   s_xbt_swag_hookup_t host_proc_hookup;
5   s_xbt_swag_hookup_t destroy_hookup;
6
7   unsigned long pid;
8   char *name                XBT_ANNOTE(size,1);
9   smx_host_t smx_host;          
10   smx_context_t context;        
11   xbt_running_ctx_t *running_ctx XBT_ANNOTE(size,1);
12   short int FLAGS;
13   smx_host_t new_host;          
14   smx_action_t waiting_action;  
15   xbt_fifo_t comms;       
16   xbt_dict_t properties;
17   s_smx_simcall_t simcall;
18   
19
20 } s_smx_process_t;
21