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