X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/eb3be59d63b0d199fa3f32b5a22553e44cfb917a..fc727903530d55d5d3f903a8213c7cb8a3273c7a:/src/simix/smx_private.h diff --git a/src/simix/smx_private.h b/src/simix/smx_private.h index 13dca2f9a2..b19e966584 100644 --- a/src/simix/smx_private.h +++ b/src/simix/smx_private.h @@ -7,7 +7,7 @@ #ifndef _SIMIX_PRIVATE_H #define _SIMIX_PRIVATE_H -#include "simix/simix.h" +#include "simgrid/simix.h" #include "surf/surf.h" #include "xbt/fifo.h" #include "xbt/swag.h" @@ -57,6 +57,15 @@ extern unsigned long simix_process_maxpid; #define SMX_THROW() RETHROW +/* ******************************** File ************************************ */ +typedef struct s_smx_file { + surf_file_t surf_file; +} s_smx_file_t; + +typedef struct s_smx_stat { + s_file_stat_t surf_stat; +} s_smx_stat_t; + /*********************************** Time ************************************/ /** @brief Timer datatype */ @@ -84,6 +93,13 @@ typedef enum { SIMIX_COMM_DONE } e_smx_comm_type_t; +typedef enum { + SIMIX_IO_OPEN, + SIMIX_IO_WRITE, + SIMIX_IO_READ, + SIMIX_IO_STAT +} e_smx_io_type_t; + /** @brief Action datatype */ typedef struct s_smx_action { @@ -107,6 +123,9 @@ typedef struct s_smx_action { int detached; /* If detached or not */ void (*clean_fun)(void*); /* Function to clean the detached src_buf if something goes wrong */ + int (*match_fun)(void*,void*,smx_action_t); /* Filter function used by the other side. It is used when + looking if a given communication matches my needs. For that, myself must match the + expectations of the other side, too. See */ /* Surf action data */ surf_action_t surf_comm; /* The Surf communication action encapsulated */