xref: /openbsd/sys/dev/pci/drm/include/linux/eventfd.h (revision 5dea098c)
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
12 eventfd_signal(struct eventfd_ctx *c, uint64_t v)
13 {
14 }
15 
16 static inline void
17 eventfd_ctx_put(struct eventfd_ctx *c)
18 {
19 }
20 
21 #endif
22