From: suter Date: Wed, 17 Jul 2013 11:44:42 +0000 (+0200) Subject: update examples with new prototype for open X-Git-Tag: v3_9_90~128^2~67 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/b38338cc4115706f23bc5230df595e36d0ef2843 update examples with new prototype for open --- diff --git a/examples/msg/io/file.c b/examples/msg/io/file.c index d36365fea9..d1595cb44e 100644 --- a/examples/msg/io/file.c +++ b/examples/msg/io/file.c @@ -37,14 +37,14 @@ int host(int argc, char *argv[]) size_t read,write; if(!strcmp(MSG_process_get_name(MSG_process_self()),"0")){ - file = MSG_file_open(mount,FILENAME1); + file = MSG_file_open(mount,FILENAME1, NULL); MSG_file_dump(file); } else if(!strcmp(MSG_process_get_name(MSG_process_self()),"1")) - file = MSG_file_open(mount,FILENAME2); + file = MSG_file_open(mount,FILENAME2, NULL); else if(!strcmp(MSG_process_get_name(MSG_process_self()),"2")) - file = MSG_file_open(mount,FILENAME3); + file = MSG_file_open(mount,FILENAME3, NULL); else if(!strcmp(MSG_process_get_name(MSG_process_self()),"3")) - file = MSG_file_open(mount,FILENAME4); + file = MSG_file_open(mount,FILENAME4, NULL); else xbt_die("FILENAME NOT DEFINED %s",MSG_process_get_name(MSG_process_self())); XBT_INFO("\tOpen file '%s'",file->fullname); diff --git a/examples/msg/io/file_unlink.c b/examples/msg/io/file_unlink.c index 8bcf082499..47c712743e 100644 --- a/examples/msg/io/file_unlink.c +++ b/examples/msg/io/file_unlink.c @@ -35,7 +35,7 @@ int host(int argc, char *argv[]) // First open XBT_INFO("\tOpen file '%s'",FILENAME1); - file = MSG_file_open(mount,FILENAME1); + file = MSG_file_open(mount,FILENAME1, NULL); // Unlink the file XBT_INFO("\tUnlink file '%s'",file->fullname); @@ -43,7 +43,7 @@ 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); + file = MSG_file_open(mount,FILENAME1, NULL); // Write into the new file write = MSG_file_write(100000,file); // Write for 100Ko