RTEMS CPU Kit with SuperCore
4.11.3
Main Page
Related Pages
Modules
+
Data Structures
Data Structures
+
Data Fields
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Files
File List
+
Globals
+
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
i
j
l
m
n
o
p
q
r
s
t
u
v
w
+
Variables
_
b
c
d
i
r
+
Typedefs
a
b
c
d
f
h
i
m
o
p
q
r
s
t
u
w
x
+
Enumerations
b
c
d
e
h
i
m
o
p
r
s
t
w
+
Enumerator
c
i
m
p
r
s
t
w
+
Macros
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
w
mnt
data0
chrisj
rtems
releases
rtems-release.git
4.11.3
ws-rtems
rtems-4.11.3
cpukit
libfs
src
jffs2
include
linux
fs.h
Go to the documentation of this file.
1
#ifndef __LINUX_FS_H__
2
#define __LINUX_FS_H__
3
4
#include <
linux/stat.h
>
5
#include <sys/types.h>
6
#include <sys/time.h>
7
8
#define DT_UNKNOWN 0
9
#define DT_DIR 4
10
#define DT_REG 8
11
#define DT_LNK 10
12
13
#define ATTR_MODE (1U << 0)
14
#define ATTR_UID (1U << 1)
15
#define ATTR_GID (1U << 2)
16
#define ATTR_SIZE (1U << 3)
17
#define ATTR_ATIME (1U << 4)
18
#define ATTR_MTIME (1U << 5)
19
#define ATTR_CTIME (1U << 6)
20
21
struct
iattr
{
22
unsigned
int
ia_valid;
23
mode_t ia_mode;
24
uid_t ia_uid;
25
gid_t ia_gid;
26
off_t ia_size;
27
time_t ia_atime;
28
time_t ia_mtime;
29
time_t ia_ctime;
30
};
31
32
#endif
/* __LINUX_FS_H__ */
stat.h
iattr
Definition:
fs.h:22
Generated by
1.8.13