From b38338cc4115706f23bc5230df595e36d0ef2843 Mon Sep 17 00:00:00 2001 From: suter Date: Wed, 17 Jul 2013 13:44:42 +0200 Subject: [PATCH] update examples with new prototype for open --- examples/msg/io/file.c | 8 ++++---- examples/msg/io/file_unlink.c | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) 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 -- 2.20.1