Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
issend should be treated as isend, even if not detached
[simgrid.git] / include / xbt / file_stat.h
index b4ee8c7567012aa4381a7f04732142307ebd19db..4e323dc06ea95a20becb80be43471acfd90102c0 100644 (file)
 
 #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)