X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/73f9260daacbea983884e90b7e366e9d1205d516..15badc71ce964f6dae6428c9a4c0198fad5d4936:/examples/msg/io/file_unlink.c diff --git a/examples/msg/io/file_unlink.c b/examples/msg/io/file_unlink.c index e4ddfbf77d..30c7c17469 100644 --- a/examples/msg/io/file_unlink.c +++ b/examples/msg/io/file_unlink.c @@ -36,7 +36,7 @@ int host(int argc, char *argv[]) // First open XBT_INFO("\tOpen file '%s'",FILENAME1); - file = MSG_file_open(mount,FILENAME1,"rw"); + file = MSG_file_open(mount,FILENAME1); // Unlink the file XBT_INFO("\tUnlink file '%s'",file->name); @@ -44,10 +44,10 @@ int host(int argc, char *argv[]) // Re Open the file wich is in fact created XBT_INFO("\tOpen file '%s'",FILENAME1); - file = MSG_file_open(mount,FILENAME1,"rw"); + file = MSG_file_open(mount,FILENAME1); // Write into the new file - write = MSG_file_write(ptr,100000,sizeof(char*),file); // Write for 100Ko + write = MSG_file_write(ptr,100000,file); // Write for 100Ko XBT_INFO("\tHave written %zu on %s",write,file->name); // Close the file