1# Copyright (c) 2020 Tobias Svehagen
2# Copyright (c) 2023 Meta
3#
4# SPDX-License-Identifier: Apache-2.0
5
6menu "Miscellaneous POSIX-related options"
7
8config EVENTFD
9	bool "Support for eventfd"
10	depends on !NATIVE_APPLICATION
11	select ZVFS
12	select ZVFS_EVENTFD
13	help
14	  Enable support for event file descriptors, eventfd. An eventfd can
15	  be used as an event wait/notify mechanism together with POSIX calls
16	  like read, write and poll.
17
18endmenu
19