blob: 94dd10366a78ead79b7cb42dc15d7fb89bdc787a [file] [log] [blame]
Davide Libenzie1ad7462007-05-10 22:23:19 -07001/*
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
Ulrich Drepperb087498e2008-07-23 21:29:25 -070011#include <linux/fcntl.h>
Davide Libenzi13389012009-06-30 11:41:11 -070012#include <linux/file.h>
Ulrich Drepperb087498e2008-07-23 21:29:25 -070013
Davide Libenzibcd0b232009-03-31 15:24:18 -070014/*
15 * CAREFUL: Check include/asm-generic/fcntl.h when defining
16 * new flags, since they might collide with O_* ones. We want
17 * to re-use O_* flags that couldn't possibly have a meaning
18 * from eventfd, in order to leave a free define-space for
19 * shared O_* flags.
20 */
21#define EFD_SEMAPHORE (1 << 0)
Ulrich Drepperb087498e2008-07-23 21:29:25 -070022#define EFD_CLOEXEC O_CLOEXEC
Ulrich Dreppere7d476d2008-07-23 21:29:38 -070023#define EFD_NONBLOCK O_NONBLOCK
Ulrich Drepperb087498e2008-07-23 21:29:25 -070024
Davide Libenzibcd0b232009-03-31 15:24:18 -070025#define EFD_SHARED_FCNTL_FLAGS (O_CLOEXEC | O_NONBLOCK)
26#define EFD_FLAGS_SET (EFD_SHARED_FCNTL_FLAGS | EFD_SEMAPHORE)
27
Davide Libenzi13389012009-06-30 11:41:11 -070028#ifdef CONFIG_EVENTFD
29
Davide Libenzi562787a2009-09-22 16:43:57 -070030struct file *eventfd_file_create(unsigned int count, int flags);
Davide Libenzi13389012009-06-30 11:41:11 -070031struct eventfd_ctx *eventfd_ctx_get(struct eventfd_ctx *ctx);
32void eventfd_ctx_put(struct eventfd_ctx *ctx);
Davide Libenzie1ad7462007-05-10 22:23:19 -070033struct file *eventfd_fget(int fd);
Davide Libenzi13389012009-06-30 11:41:11 -070034struct eventfd_ctx *eventfd_ctx_fdget(int fd);
35struct eventfd_ctx *eventfd_ctx_fileget(struct file *file);
36int eventfd_signal(struct eventfd_ctx *ctx, int n);
Davide Libenzie1ad7462007-05-10 22:23:19 -070037
38#else /* CONFIG_EVENTFD */
39
Davide Libenzi13389012009-06-30 11:41:11 -070040/*
41 * Ugly ugly ugly error layer to support modules that uses eventfd but
42 * pretend to work in !CONFIG_EVENTFD configurations. Namely, AIO.
43 */
Davide Libenzi562787a2009-09-22 16:43:57 -070044static inline struct file *eventfd_file_create(unsigned int count, int flags)
45{
46 return ERR_PTR(-ENOSYS);
47}
48
Davide Libenzi13389012009-06-30 11:41:11 -070049static inline struct eventfd_ctx *eventfd_ctx_fdget(int fd)
50{
51 return ERR_PTR(-ENOSYS);
52}
Davide Libenzie1ad7462007-05-10 22:23:19 -070053
Davide Libenzi13389012009-06-30 11:41:11 -070054static inline int eventfd_signal(struct eventfd_ctx *ctx, int n)
55{
56 return -ENOSYS;
57}
58
59static inline void eventfd_ctx_put(struct eventfd_ctx *ctx)
60{
61
62}
63
64#endif
Davide Libenzie1ad7462007-05-10 22:23:19 -070065
Davide Libenzie1ad7462007-05-10 22:23:19 -070066#endif /* _LINUX_EVENTFD_H */
67