]> git.ipfire.org Git - thirdparty/linux.git/blame - include/linux/eventfd.h
flag parameters: signalfd
[thirdparty/linux.git] / include / linux / eventfd.h
CommitLineData
e1ad7468
DL
1/*
2 * include/linux/eventfd.h
3 *
4 * Copyright (C) 2007 Davide Libenzi <davidel@xmailserver.org>
5 *
6 */
7
8#ifndef _LINUX_EVENTFD_H
9#define _LINUX_EVENTFD_H
10
e1ad7468
DL
11#ifdef CONFIG_EVENTFD
12
13struct file *eventfd_fget(int fd);
14int eventfd_signal(struct file *file, int n);
15
16#else /* CONFIG_EVENTFD */
17
18#define eventfd_fget(fd) ERR_PTR(-ENOSYS)
d2fd8996
RD
19static inline int eventfd_signal(struct file *file, int n)
20{ return 0; }
e1ad7468
DL
21
22#endif /* CONFIG_EVENTFD */
23
e1ad7468
DL
24#endif /* _LINUX_EVENTFD_H */
25