]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/unix/sysv/linux/powerpc/aix/aix-stat.h
Update copyright notices with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / powerpc / aix / aix-stat.h
1 /* Copyright (C) 1999-2013 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
8
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
17
18 struct aixstat
19 {
20 aixdev_t st_dev;
21 aixino_t st_ino;
22 aixmode_t st_mode;
23 aixnlink_t st_nlink;
24 unsigned short int st_flag;
25 aixuid_t st_uid;
26 aixgid_t st_gid;
27 aixdev_t st_rdev;
28 aixoff_t st_size;
29 aixtime_t st_atime;
30 unsigned long int __unused1;
31 aixtime_t st_mtime;
32 unsigned long int __unused2;
33 aixtime_t st_ctime;
34 unsigned long int __unused3;
35 aixblksize_t st_blksize;
36 aixblkcnt_t st_blocks;
37 int st_vfstype;
38 unsigned int st_vfs;
39 unsigned int st_type;
40 unsigned int st_gen;
41
42 #define _STATBUF_RESERVED_SPACE 9
43 unsigned int st_reserved[_STATBUF_RESERVED_SPACE];
44 };
45
46 struct aixstat64
47 {
48 aixdev_t st_dev;
49 aixino64_t st_ino;
50 aixmode_t st_mode;
51 aixnlink_t st_nlink;
52 unsigned short int st_flag;
53 aixuid_t st_uid;
54 aixgid_t st_gid;
55 aixdev_t st_rdev;
56 int st_ssize;
57 aixtime_t st_atime;
58 unsigned long int __unused1;
59 aixtime_t st_mtime;
60 unsigned long int __unused2;
61 aixtime_t st_ctime;
62 unsigned long int __unused3;
63 aixblksize_t st_blksize;
64 aixblkcnt64_t st_blocks;
65 int st_vfstype;
66 unsigned int st_vfs;
67 unsigned int st_type;
68 unsigned int st_gen;
69 unsigned int st_reserved[_STATBUF_RESERVED_SPACE];
70 unsigned int st_padto_ll;
71 aixoff64_t st_size;
72 };
73
74 #define aix_major(x) (int) ((unsigned int) (x) >> 16)
75 #define aix_minor(x) (int) ((x) & 0xFFFF)