aboutsummaryrefslogtreecommitdiff
path: root/stand/kboot/arch/amd64/stat_arch.h
blob: 81f3738f3ea68b48a6acb718d57120c053766af7 (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
28
29
30
31
/*
 * 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;
	unsigned int    __pad0;
	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];
};