X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fb5a144e806900edc6d26992740acf2c117538fa..4a2a591f2a153d202731c3d2e2a6739a3775ee0a:/src/msg/msg_io.c diff --git a/src/msg/msg_io.c b/src/msg/msg_io.c index a480212873..69a18e21da 100644 --- a/src/msg/msg_io.c +++ b/src/msg/msg_io.c @@ -6,6 +6,7 @@ #include "msg_private.h" #include "xbt/log.h" +#include XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_io, msg, "Logging specific to MSG (io)"); @@ -65,11 +66,16 @@ void MSG_file_dump (msg_file_t fd){ // THROW_UNIMPLEMENTED; /* Update the cached information first */ __MSG_file_get_info(fd); - XBT_INFO("File Descriptor information:\n\t\tFull name: '%s'" - "\n\t\tSize: %zu\n\t\tMount point: '%s'\n\t\tStorage Id: '%s'" - "\n\t\tStorage Type: '%s'\n\t\tContent Type: '%s'", - fd->fullname, fd->info->size, fd->info->mount_point, fd->info->storageId, - fd->info->storage_type, fd->info->content_type); + XBT_INFO("File Descriptor information:\n" + "\t\tFull name: '%s'\n" + "\t\tSize: %" PRIu64 "\n" + "\t\tMount point: '%s'\n" + "\t\tStorage Id: '%s'\n" + "\t\tStorage Type: '%s'\n" + "\t\tContent Type: '%s'", + fd->fullname, fd->info->size, fd->info->mount_point, + fd->info->storageId, fd->info->storage_type, + fd->info->content_type); } /** \ingroup msg_file_management @@ -110,7 +116,7 @@ msg_file_t MSG_file_open(const char* mount, const char* fullname, void* data) msg_file_t file = xbt_new(s_msg_file_t,1); file->fullname = xbt_strdup(fullname); file->simdata = xbt_new0(s_simdata_file_t,1); - file->info = xbt_new0(s_file_info_t,1); + file->info = xbt_new0(s_msg_file_info_t,1); file->simdata->smx_file = simcall_file_open(mount, fullname); SIMIX_file_set_data(file->simdata->smx_file, data); return file;