zephyr/samples/posix/philosophers/Kconfig
Christopher Friedt 248324b67a samples: posix: implement philosphers using pthreads
This sample takes a POSIX-y spin on the existing
Dining Philosophers sample application. The objects
used in the POSIX version are pthread_mutex_t, and
the threads are pthread_t.

Signed-off-by: Christopher Friedt <cfriedt@meta.com>
2024-01-28 13:01:36 -05:00

17 lines
292 B
Plaintext

# Copyright (c) 2024, Meta
#
# SPDX-License-Identifier: Apache-2.0
config SAMPLE_ERROR_CHECKING
bool "Perform error checking"
config SAMPLE_DEBUG_PRINTF
bool "Print debug information"
default y
config SAMPLE_SAME_PRIO
bool "Print debug information"
default n
source "Kconfig.zephyr"