Home
last modified time | relevance | path

Searched refs:threading (Results 1 – 25 of 31) sorted by relevance

12

/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/
Dfifo_handler.py10 import threading
32 self._open_fifo_thread: threading.Thread | None = None
33 self._opening_monitor_thread: threading.Thread | None = None
34 self._fifo_opened: threading.Event = threading.Event()
35 self._stop_waiting_for_opening: threading.Event = threading.Event()
50 self._open_fifo_thread = threading.Thread(target=self._open_fifo, daemon=True)
53 … self._opening_monitor_thread = threading.Thread(target=self._opening_monitor, daemon=True)
Ddevice_adapter.py13 import threading
42 self._reader_thread: threading.Thread | None = None
43 self._device_run: threading.Event = threading.Event()
44 self._device_connected: threading.Event = threading.Event()
232 self._reader_thread = threading.Thread(target=self._handle_device_output, daemon=True)
/Zephyr-latest/samples/net/cellular_modem/server/
Dte_udp_echo.py5 import threading
11 self.thread = threading.Thread(target=self._target_)
Dte_udp_receive.py5 import threading
45 self.thread = threading.Thread(target=self._target_)
/Zephyr-latest/lib/libc/arcmwdt/
DCMakeLists.txt9 threading.c
/Zephyr-latest/scripts/pylib/pytest-twister-harness/tests/resources/
Dfifo_mock.py8 import threading
35 self.thread = threading.Thread(target=self._open(), daemon=True)
/Zephyr-latest/soc/intel/intel_adsp/tools/
Dremote-fw-service.py12 import threading
166 t = threading.Thread(target=self.check_connection, args=(proc,))
235 self.lock = threading.Lock()
342 req_t = threading.Thread(target=req_server.serve_forever, daemon=True)
346 log_t = threading.Thread(target=log_server.serve_forever, daemon=True)
/Zephyr-latest/samples/userspace/hello_world_user/
DREADME.rst16 * multi threading
/Zephyr-latest/scripts/pylib/twister/
Dexpr_parser.py12 import threading
285 mutex = threading.Lock()
/Zephyr-latest/doc/kernel/services/
Dindex.rst14 amounts of memory (as little as 2 KB!) or with simple multi-threading
20 devices (like Wi-Fi and Bluetooth Low Energy), and complex multi-threading,
Dpolling.rst54 :c:func:`k_poll` was called, or due to the preemptive multi-threading
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dhandlers.py21 import threading
223 reader_t = threading.Thread(target=self._output_reader, args=(proc,), daemon=True)
364 t = threading.Thread(target=self._output_handler, args=(proc, harness,), daemon=True)
757 halt_monitor_evt = threading.Event()
759 t = threading.Thread(target=self.monitor_serial, daemon=True,
1086 self.thread = threading.Thread(name=self.name, target=QEMUHandler._thread,
1402 self.thread = threading.Thread(target=self._enqueue_char, args=(queue,))
Dharness.py13 import threading
514 reader_t = threading.Thread(target=self._output_reader, args=(proc,), daemon=True)
1051 reader_t = threading.Thread(target=self._output_reader, args=(proc,), daemon=True)
/Zephyr-latest/doc/kernel/services/threads/
Dnothread.rst82 threading is disabled, but are within scope based on their subsystem, or
/Zephyr-latest/lib/posix/options/
DKconfig.profile59 threading.
/Zephyr-latest/modules/hal_silabs/wiseconnect/
DCMakeLists.txt148 ${WISECONNECT_DIR}/components/device/silabs/si91x/wireless/threading/sli_si91x_multithreaded.c
/Zephyr-latest/modules/mbedtls/
DCMakeLists.txt114 ${ZEPHYR_CURRENT_MODULE_DIR}/library/threading.c
/Zephyr-latest/doc/introduction/
Dindex.rst57 * *Multi-threading Services* for cooperative, priority-based,
/Zephyr-latest/kernel/
DKconfig13 bool "Multi-threading" if ARCH_HAS_SINGLE_THREAD_SUPPORT
148 but some applications have a carefully designed threading
/Zephyr-latest/boards/native/doc/
Dbsim_boards_design.rst209 The threading description, as well as the general SOC and board architecture
Darch_soc.rst405 layer and the native simulator CPU threading emulation (NCT).
/Zephyr-latest/doc/develop/test/
Dztest.rst63 :c:macro:`ZTEST_F` with the userspace threading for the test.
/Zephyr-latest/doc/releases/
Drelease-notes-3.4.rst369 * Enabled single-threading support.
1352 threading API and race conditions have been mitigated.
Drelease-notes-3.0.rst966 * :github:`41963` - Kernel usage fault when using semaphore with multi-threading
1104 * :github:`40775` - stm32: multi-threading broken after #40173
/Zephyr-latest/boards/native/native_sim/doc/
Dindex.rst217 :ref:`its basic architecture<posix_arch_architecture>` regarding threading

12