|
| From: | Jose E. Marchesi |
| Subject: | Re: [RFC] redoxfs.pk: Pickle for RedoxFS file system |
| Date: | Fri, 18 Dec 2020 17:58:09 +0100 |
| User-agent: | Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) |
> uint<64> ctime;
> uint<32> ctime_nsec;
> uint<64> mtime;
> uint<32> mtime_nsec;
> uint<64> atime;
> uint<32> atime_nsec;
What are the meaning of ctime, mtime and atime above? I quickly looked
at the redoxfs source code but it wasn't obvious to me.
Maybe there is an opportunity there to factorize in a RedoxFS_Time
struct?
type RedoxFS_Time =
struct
{
uint<64> whateverthesethingsare;
uint<32> atime_nsec;
};
along with a suitable pretty-printer...
| [Prev in Thread] | Current Thread | [Next in Thread] |