X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/908f43d575e3b19014f39ba209da997ab6e3fa2c..2b859d7b5c2aed26d77af4b362ba4f3d39626a9a:/examples/msg/io/file_unlink.c diff --git a/examples/msg/io/file_unlink.c b/examples/msg/io/file_unlink.c index 30c7c17469..8bcf082499 100644 --- a/examples/msg/io/file_unlink.c +++ b/examples/msg/io/file_unlink.c @@ -30,7 +30,6 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(io_file, int host(int argc, char *argv[]) { msg_file_t file = NULL; - void *ptr = NULL; char* mount = xbt_strdup("/home"); size_t write; @@ -39,7 +38,7 @@ int host(int argc, char *argv[]) file = MSG_file_open(mount,FILENAME1); // Unlink the file - XBT_INFO("\tUnlink file '%s'",file->name); + XBT_INFO("\tUnlink file '%s'",file->fullname); MSG_file_unlink(file); // Re Open the file wich is in fact created @@ -47,11 +46,11 @@ int host(int argc, char *argv[]) file = MSG_file_open(mount,FILENAME1); // Write into the new file - write = MSG_file_write(ptr,100000,file); // Write for 100Ko - XBT_INFO("\tHave written %zu on %s",write,file->name); + write = MSG_file_write(100000,file); // Write for 100Ko + XBT_INFO("\tHave written %zu on %s",write,file->fullname); // Close the file - XBT_INFO("\tClose file '%s'",file->name); + XBT_INFO("\tClose file '%s'",file->fullname); MSG_file_close(file); xbt_dict_t dict_ls;