Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
smpirun.in: various little fixes.
[simgrid.git] / src / simix / smx_smurf_private.h
index 0a91461..d828e5b 100644 (file)
@@ -508,33 +508,38 @@ typedef struct s_smx_simcall {
     } sem_get_capacity;
 
     struct {
+      const char* storage;
       void *ptr;
       size_t size;
       size_t nmemb;
-      smx_file_t stream;
+      m_file_t stream;
       size_t result;
     } file_read;
 
     struct {
+      const char* storage;
       const void *ptr;
       size_t size;
       size_t nmemb;
-      smx_file_t stream;
+      m_file_t stream;
       size_t result;
     } file_write;
 
     struct {
+      const char* storage;
       const char* path;
       const char* mode;
-      smx_file_t result;
+      m_file_t result;
     } file_open;
 
     struct {
-      smx_file_t fp;
+      const char* storage;
+      m_file_t fp;
       int result;
     } file_close;
 
     struct {
+      const char* storage;
       int fd;
       //Next should be struct stat* buf
       void* buf;