From: Robert Ancell Date: Sat, 14 Apr 2012 06:05:00 +0000 (+1000) Subject: posix: Add stat fields for high precision access/modification/status change timestamp... X-Git-Tag: 0.17.0~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b39b6008b26479b5cdeb8cc1920f2a1f0b0e9863;p=thirdparty%2Fvala.git posix: Add stat fields for high precision access/modification/status change timestamps (POSIX.1-2008) --- diff --git a/vapi/posix.vapi b/vapi/posix.vapi index 14e3eab46..e4461a4ab 100644 --- a/vapi/posix.vapi +++ b/vapi/posix.vapi @@ -1599,8 +1599,11 @@ namespace Posix { public gid_t st_gid; public dev_t st_rdev; public size_t st_size; + public timespec st_atim; public time_t st_atime; + public timespec st_mtim; public time_t st_mtime; + public timespec st_ctim; public time_t st_ctime; public blksize_t st_blksize; public blkcnt_t st_blocks;