Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
This is better for regex ... sorry
[simgrid.git] / include / xbt / file_stat.h
index b4ee8c7..4e323dc 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)