int host(int argc, char *argv[])
{
size_t read = simcall_file_read(NULL,0,0,NULL);
- XBT_INFO("Host '%s' read",MSG_host_get_name(MSG_host_self()) );
+ XBT_INFO("Host '%s' read %ld",MSG_host_get_name(MSG_host_self()),read);
size_t write = simcall_file_write(NULL,0,0,NULL);
- XBT_INFO("Host '%s' write",MSG_host_get_name(MSG_host_self()) );
+ XBT_INFO("Host '%s' write %ld",MSG_host_get_name(MSG_host_self()), write);
return 0;
}
SIMIX_pre_file_write(simcall);
break;
+ case SIMCALL_FILE_OPEN:
+ break;
+
+ case SIMCALL_FILE_CLOSE:
+ break;
+
+ case SIMCALL_FILE_STAT:
+ break;
+
case SIMCALL_NONE:
THROWF(arg_error,0,"Asked to do the noop syscall on %s@%s",
SIMIX_process_get_name(simcall->issuer),