/
usr
/
include
/
asm
/
/usr/include/asm
mkdir
upload
Name
Size
Mode
Actions
a.out.h
693
0644
edit
dl
rm
auxvec.h
281
0644
edit
dl
rm
bitsperlong.h
229
0644
edit
dl
rm
boot.h
260
0644
edit
dl
rm
bootparam.h
2970
0644
edit
dl
rm
byteorder.h
137
0644
edit
dl
rm
debugreg.h
2904
0644
edit
dl
rm
e820.h
2259
0644
edit
dl
rm
errno.h
31
0644
edit
dl
rm
fcntl.h
31
0644
edit
dl
rm
hyperv.h
8103
0644
edit
dl
rm
ioctl.h
31
0644
edit
dl
rm
ioctls.h
32
0644
edit
dl
rm
ipcbuf.h
32
0644
edit
dl
rm
ist.h
790
0644
edit
dl
rm
kvm.h
6212
0644
edit
dl
rm
kvm_para.h
2305
0644
edit
dl
rm
ldt.h
1243
0644
edit
dl
rm
mce.h
5241
0644
edit
dl
rm
mman.h
170
0644
edit
dl
rm
msgbuf.h
32
0644
edit
dl
rm
msr-index.h
23412
0644
edit
dl
rm
msr.h
311
0644
edit
dl
rm
mtrr.h
3788
0644
edit
dl
rm
param.h
31
0644
edit
dl
rm
poll.h
30
0644
edit
dl
rm
posix_types.h
92
0644
edit
dl
rm
posix_types_32.h
1316
0644
edit
dl
rm
posix_types_64.h
1306
0644
edit
dl
rm
prctl.h
190
0644
edit
dl
rm
processor-flags.h
3656
0644
edit
dl
rm
ptrace-abi.h
1797
0644
edit
dl
rm
ptrace.h
1192
0644
edit
dl
rm
resource.h
34
0644
edit
dl
rm
sembuf.h
699
0644
edit
dl
rm
setup.h
82
0644
edit
dl
rm
shmbuf.h
32
0644
edit
dl
rm
sigcontext.h
5403
0644
edit
dl
rm
sigcontext32.h
1684
0644
edit
dl
rm
siginfo.h
198
0644
edit
dl
rm
signal.h
2958
0644
edit
dl
rm
socket.h
32
0644
edit
dl
rm
sockios.h
33
0644
edit
dl
rm
stat.h
2324
0644
edit
dl
rm
statfs.h
353
0644
edit
dl
rm
swab.h
1179
0644
edit
dl
rm
termbits.h
34
0644
edit
dl
rm
termios.h
33
0644
edit
dl
rm
types.h
114
0644
edit
dl
rm
ucontext.h
339
0644
edit
dl
rm
unistd.h
82
0644
edit
dl
rm
unistd_32.h
10692
0644
edit
dl
rm
unistd_64.h
24238
0644
edit
dl
rm
vm86.h
3055
0644
edit
dl
rm
vsyscall.h
375
0644
edit
dl
rm
Edit:
/usr/include/asm/stat.h
(2324B)
#ifndef _ASM_X86_STAT_H #define _ASM_X86_STAT_H #define STAT_HAVE_NSEC 1 #ifdef __i386__ struct stat { unsigned long st_dev; unsigned long st_ino; unsigned short st_mode; unsigned short st_nlink; unsigned short st_uid; unsigned short st_gid; unsigned long st_rdev; unsigned long st_size; unsigned long st_blksize; unsigned long st_blocks; unsigned long st_atime; unsigned long st_atime_nsec; unsigned long st_mtime; unsigned long st_mtime_nsec; unsigned long st_ctime; unsigned long st_ctime_nsec; unsigned long __unused4; unsigned long __unused5; }; #define STAT64_HAS_BROKEN_ST_INO 1 /* This matches struct stat64 in glibc2.1, hence the absolutely * insane amounts of padding around dev_t's. */ struct stat64 { unsigned long long st_dev; unsigned char __pad0[4]; unsigned long __st_ino; unsigned int st_mode; unsigned int st_nlink; unsigned long st_uid; unsigned long st_gid; unsigned long long st_rdev; unsigned char __pad3[4]; long long st_size; unsigned long st_blksize; /* Number 512-byte blocks allocated. */ unsigned long long st_blocks; unsigned long st_atime; unsigned long st_atime_nsec; unsigned long st_mtime; unsigned int st_mtime_nsec; unsigned long st_ctime; unsigned long st_ctime_nsec; unsigned long long st_ino; }; #else /* __i386__ */ struct stat { unsigned long st_dev; unsigned long st_ino; unsigned long st_nlink; unsigned int st_mode; unsigned int st_uid; unsigned int st_gid; unsigned int __pad0; unsigned long st_rdev; long st_size; long st_blksize; long st_blocks; /* Number 512-byte blocks allocated. */ unsigned long st_atime; unsigned long st_atime_nsec; unsigned long st_mtime; unsigned long st_mtime_nsec; unsigned long st_ctime; unsigned long st_ctime_nsec; long __unused[3]; }; #endif /* for 32bit emulation and 32 bit kernels */ struct __old_kernel_stat { unsigned short st_dev; unsigned short st_ino; unsigned short st_mode; unsigned short st_nlink; unsigned short st_uid; unsigned short st_gid; unsigned short st_rdev; #ifdef __i386__ unsigned long st_size; unsigned long st_atime; unsigned long st_mtime; unsigned long st_ctime; #else unsigned int st_size; unsigned int st_atime; unsigned int st_mtime; unsigned int st_ctime; #endif }; #endif /* _ASM_X86_STAT_H */
Save
cmd:
run