OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
arch
/
xtensa
/
include
/
uapi
/
asm
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:13 AM
rwxr-xr-x
📄
Kbuild
307 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
auxvec.h
60 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
byteorder.h
340 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
ioctls.h
4.73 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
ipcbuf.h
905 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
mman.h
4.46 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
msgbuf.h
1.55 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
param.h
635 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
poll.h
509 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
posix_types.h
1.13 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
ptrace.h
976 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
sembuf.h
1.22 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
setup.h
462 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
shmbuf.h
2.12 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
sigcontext.h
681 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
signal.h
3.01 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
socket.h
2.41 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
sockios.h
863 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
stat.h
1.75 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
swab.h
2.13 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
termbits.h
4.88 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
types.h
712 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
unistd.h
22.99 KB
01/28/2018 09:20:33 PM
rw-r--r--
Editing: stat.h
Close
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * include/asm-xtensa/stat.h * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 2001 - 2007 Tensilica Inc. */ #ifndef _XTENSA_STAT_H #define _XTENSA_STAT_H #define STAT_HAVE_NSEC 1 struct stat { unsigned long st_dev; unsigned long st_ino; unsigned int st_mode; unsigned int st_nlink; unsigned int st_uid; unsigned int st_gid; unsigned long st_rdev; 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; }; struct stat64 { unsigned long long st_dev; /* Device */ unsigned long long st_ino; /* File serial number */ unsigned int st_mode; /* File mode. */ unsigned int st_nlink; /* Link count. */ unsigned int st_uid; /* User ID of the file's owner. */ unsigned int st_gid; /* Group ID of the file's group. */ unsigned long long st_rdev; /* Device number, if device. */ long long st_size; /* Size of file, in bytes. */ unsigned long st_blksize; /* Optimal block size for I/O. */ unsigned long __unused2; unsigned long long st_blocks; /* Number 512-byte blocks allocated. */ unsigned long st_atime; /* Time of last access. */ unsigned long st_atime_nsec; unsigned long st_mtime; /* Time of last modification. */ unsigned long st_mtime_nsec; unsigned long st_ctime; /* Time of last status change. */ unsigned long st_ctime_nsec; unsigned long __unused4; unsigned long __unused5; }; #endif /* _XTENSA_STAT_H */