Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
further simplification of the storage API, keep size only as nmemb was
[simgrid.git] / examples / msg / io / file.c
index bcd2d94..84bded3 100644 (file)
@@ -49,13 +49,13 @@ int host(int argc, char *argv[])
 
   XBT_INFO("\tOpen file '%s'",file->name);
 
-  read = MSG_file_read(ptr,10000000,sizeof(char*),file);     // Read for 10MB
+  read = MSG_file_read(ptr,10000000,file);     // Read for 10MB
   XBT_INFO("\tHave read    %zu on %s",read,file->name);
 
-  write = MSG_file_write(ptr,100000,sizeof(char*),file);  // Write for 100KB
+  write = MSG_file_write(ptr,100000,file);  // Write for 100KB
   XBT_INFO("\tHave written %zu on %s",write,file->name);
 
-  read = MSG_file_read(ptr,110000,sizeof(char*),file);     // Read for 110KB
+  read = MSG_file_read(ptr,110000,file);     // Read for 110KB
   XBT_INFO("\tHave read    %zu on %s (of size %zu)",read,file->name,
       MSG_file_get_size(file));