Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/include/arch/sparc/klibc/archstat.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 532 - (show annotations) (download)
Sat Sep 1 22:45:15 2007 UTC (16 years, 9 months ago) by niro
File MIME type: text/plain
File size: 555 byte(s)
-import if magellan mkinitrd; it is a fork of redhats mkinitrd-5.0.8 with all magellan patches and features; deprecates magellan-src/mkinitrd

1 #ifndef _KLIBC_ARCHSTAT_H
2 #define _KLIBC_ARCHSTAT_H
3
4 #include <klibc/stathelp.h>
5
6 #define _STATBUF_ST_NSEC
7
8 struct stat {
9 __stdev64 (st_dev);
10
11 unsigned long long st_ino;
12
13 unsigned int st_mode;
14 unsigned int st_nlink;
15
16 unsigned int st_uid;
17 unsigned int st_gid;
18
19 __stdev64 (st_rdev);
20
21 unsigned char __pad3[8];
22
23 long long st_size;
24 unsigned int st_blksize;
25
26 unsigned char __pad4[8];
27 unsigned int st_blocks;
28
29 struct timespec st_atim;
30 struct timespec st_mtim;
31 struct timespec st_ctim;
32
33 unsigned int __unused4;
34 unsigned int __unused5;
35 };
36
37 #endif