1/* Public domain. */
2
3#ifndef _LINUX_EVENTFD_H
4#define _LINUX_EVENTFD_H
5
6#include <sys/types.h>
7
8struct eventfd_ctx {
9};
10
11static inline void
12eventfd_signal(struct eventfd_ctx *c, uint64_t v)
13{
14}
15
16static inline void
17eventfd_ctx_put(struct eventfd_ctx *c)
18{
19}
20
21#endif
22