Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
update examples with new prototype for open
authorsuter <frederic.suter@cc.in2p3.fr>
Wed, 17 Jul 2013 11:44:42 +0000 (13:44 +0200)
committersuter <frederic.suter@cc.in2p3.fr>
Wed, 17 Jul 2013 11:44:42 +0000 (13:44 +0200)
examples/msg/io/file.c
examples/msg/io/file_unlink.c

index d36365f..d1595cb 100644 (file)
@@ -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);
index 8bcf082..47c7127 100644 (file)
@@ -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