Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Merge branch 'devel'
[palacios.git] / kitten / include / arch-x86_64 / stat.h
1 #ifndef _X86_64_STAT_H
2 #define _X86_64_STAT_H
3
4 #define STAT_HAVE_NSEC 1
5
6 struct stat {
7         unsigned long   st_dev;
8         unsigned long   st_ino;
9         unsigned long   st_nlink;
10
11         unsigned int    st_mode;
12         unsigned int    st_uid;
13         unsigned int    st_gid;
14         unsigned int    __pad0;
15         unsigned long   st_rdev;
16         long            st_size;
17         long            st_blksize;
18         long            st_blocks;      /* Number 512-byte blocks allocated. */
19
20         unsigned long   st_atime;
21         unsigned long   st_atime_nsec; 
22         unsigned long   st_mtime;
23         unsigned long   st_mtime_nsec;
24         unsigned long   st_ctime;
25         unsigned long   st_ctime_nsec;
26         long            __unused[3];
27 };
28
29 #endif