zephyr/lib/posix/options/Kconfig.timer
Christopher Friedt 855b8bc6ca posix: separate shell utilities and posix api implementation
Previously, the POSIX shell utilities were intermixed with the
POSIX API implementation.

The POSIX shell utilities only depend on the public POSIX API,
so it makes sense to keep them in a separate subdirectory.

Signed-off-by: Christopher Friedt <cfriedt@meta.com>
2024-02-01 05:26:24 -05:00

28 lines
702 B
SYSTEMD

# Copyright (c) 2018 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
TYPE = TIMER
type = timer_t
type-function = timer_create
rsource "Kconfig.template.pooled_type"
if TIMER
config TIMER_CREATE_WAIT
int "Time to wait for timer availability (in msec) in POSIX application"
default 100
range 0 1000
help
This controls how long to wait for resources to come available to create
a new timer in POSIX compliant application
config TIMER_DELAYTIMER_MAX
int "Maximum count returned my timer_getoverrun() in POSIX application"
default 20
help
This controls the maximum number of times a timer can overrun before
timer_getoverrun() in POSIX compliant application.
endif # TIMER