2023-07-04 03:15:35 +08:00
|
|
|
# Copyright (c) 2020 Tobias Svehagen
|
|
|
|
# Copyright (c) 2023 Meta
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2024-05-24 00:19:58 +08:00
|
|
|
menu "Miscellaneous POSIX-related options"
|
|
|
|
|
2024-05-29 07:39:06 +08:00
|
|
|
config EVENTFD
|
2023-07-04 03:15:35 +08:00
|
|
|
bool "Support for eventfd"
|
|
|
|
depends on !NATIVE_APPLICATION
|
2024-05-29 07:39:06 +08:00
|
|
|
select ZVFS
|
|
|
|
select ZVFS_EVENTFD
|
2023-07-04 03:15:35 +08:00
|
|
|
help
|
|
|
|
Enable support for event file descriptors, eventfd. An eventfd can
|
|
|
|
be used as an event wait/notify mechanism together with POSIX calls
|
|
|
|
like read, write and poll.
|
|
|
|
|
2024-05-24 00:19:58 +08:00
|
|
|
endmenu
|