The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/include/asm-alpha/stat.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 #ifndef _ALPHA_STAT_H
    2 #define _ALPHA_STAT_H
    3 
    4 struct __old_kernel_stat {
    5         unsigned int    st_dev;
    6         unsigned int    st_ino;
    7         unsigned int    st_mode;
    8         unsigned int    st_nlink;
    9         unsigned int    st_uid;
   10         unsigned int    st_gid;
   11         unsigned int    st_rdev;
   12         long            st_size;
   13         unsigned long   st_atime;
   14         unsigned long   st_mtime;
   15         unsigned long   st_ctime;
   16         unsigned int    st_blksize;
   17         int             st_blocks;
   18         unsigned int    st_flags;
   19         unsigned int    st_gen;
   20 };
   21 
   22 struct stat {
   23         unsigned int    st_dev;
   24         unsigned int    st_ino;
   25         unsigned int    st_mode;
   26         unsigned int    st_nlink;
   27         unsigned int    st_uid;
   28         unsigned int    st_gid;
   29         unsigned int    st_rdev;
   30         long            st_size;
   31         unsigned long   st_atime;
   32         unsigned long   st_mtime;
   33         unsigned long   st_ctime;
   34         unsigned int    st_blksize;
   35         int             st_blocks;
   36         unsigned int    st_flags;
   37         unsigned int    st_gen;
   38 };
   39 
   40 #endif

Cache object: 8c1aaaa58d2e6b53918b3481e328ed46


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.