ready, now need to know why init libc is crashing
[cinitramfs.git] / ulinux / archs / x86_64 / stat.h
blob7de7a09e251988b8c0b2bbce249932ccc44b527d
1 //******************************************************************************
2 //*this code is protected by the GNU affero GPLv3
3 //*author:Sylvain BERTRAND (sylvain.bertrand AT gmail dot com)
4 //* <digital.ragnarok AT gmail dot com>
5 //******************************************************************************
6 #ifndef ULINUX_ARCH_STAT_H
7 #define ULINUX_ARCH_STAT_H
8 struct k_stat{
9 k_ul st_dev;
10 k_ul st_ino;
11 k_ul st_nlink;
13 k_u st_mode;
14 k_u st_uid;
15 k_u st_gid;
16 k_u __pad0;
17 k_ul st_rdev;
18 k_l st_size;
19 k_l st_blksize;
20 k_l st_blocks;//Number 512-byte blocks allocated.
22 k_ul st_atime;
23 k_ul st_atime_nsec;
24 k_ul st_mtime;
25 k_ul st_mtime_nsec;
26 k_ul st_ctime;
27 k_ul st_ctime_nsec;
28 k_l __unused[3];
30 #endif