Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
systemd
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
steam
systemd
Commits
05115020
Commit
05115020
authored
Sep 23, 2010
by
Lennart Poettering
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fanotify: use uint64_t instead of __u64
parent
76bf48b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/missing.h
src/missing.h
+3
-3
No files found.
src/missing.h
View file @
05115020
...
...
@@ -93,12 +93,12 @@ static inline int pivot_root(const char *new_root, const char *put_old) {
#endif
static
inline
int
fanotify_init
(
unsigned
int
flags
,
unsigned
int
event_f_flags
)
{
return
syscall
(
__NR_fanotify_init
,
flags
,
event_f_flags
);
return
syscall
(
__NR_fanotify_init
,
flags
,
event_f_flags
);
}
static
inline
int
fanotify_mark
(
int
fanotify_fd
,
unsigned
int
flags
,
__u64
mask
,
static
inline
int
fanotify_mark
(
int
fanotify_fd
,
unsigned
int
flags
,
uint64_t
mask
,
int
dfd
,
const
char
*
pathname
)
{
return
syscall
(
__NR_fanotify_mark
,
fanotify_fd
,
flags
,
mask
,
dfd
,
pathname
);
return
syscall
(
__NR_fanotify_mark
,
fanotify_fd
,
flags
,
mask
,
dfd
,
pathname
);
}
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment