X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5dc616d3c0127e742e4e8f6470aafbb7d789e6c1..687383a7ee2743f466b3e3eef9488971ce104f04:/include/xbt/file_stat.h diff --git a/include/xbt/file_stat.h b/include/xbt/file_stat.h index b4ee8c7567..4e323dc06e 100644 --- a/include/xbt/file_stat.h +++ b/include/xbt/file_stat.h @@ -10,13 +10,16 @@ #include "xbt/sysdep.h" +/** \ingroup msg_file_management + \brief Strucure containing information on file like stat on POSIX + */ typedef struct file_stat { char *user_rights; char *user; char *group; char *date; /* FIXME: update to time_t or double */ char *time; /* FIXME: update to time_t or double */ - size_t size; + double size; } s_file_stat_t, *file_stat_t; static XBT_INLINE void file_stat_copy(s_file_stat_t *src, s_file_stat_t *dst)