aboutsummaryrefslogtreecommitdiff
path: root/stand/kboot/arch/powerpc64/stat_arch.h
blob: be5584951afb8d5e73263938384538463d03ac33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * Copyright (c) 2005-2020 Rich Felker, et al.
 *
 * SPDX-License-Identifier: MIT
 *
 * Note: From the musl project
 */

struct host_kstat {
	host_dev_t st_dev;
	host_ino_t st_ino;
	host_nlink_t st_nlink;
	host_mode_t st_mode;
	host_uid_t st_uid;
	host_gid_t st_gid;
	host_dev_t st_rdev;
	host_off_t st_size;
	host_blksize_t st_blksize;
	host_blkcnt_t st_blocks;
	long st_atime_sec;
	long st_atime_nsec;
	long st_mtime_sec;
	long st_mtime_nsec;
	long st_ctime_sec;
	long st_ctime_nsec;
	long __pad_for_future[3];
};