Searched refs:threading (Results 1 – 25 of 31) sorted by relevance
12
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/ |
D | fifo_handler.py | 10 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)
|
D | device_adapter.py | 13 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/ |
D | te_udp_echo.py | 5 import threading 11 self.thread = threading.Thread(target=self._target_)
|
D | te_udp_receive.py | 5 import threading 45 self.thread = threading.Thread(target=self._target_)
|
/Zephyr-latest/lib/libc/arcmwdt/ |
D | CMakeLists.txt | 9 threading.c
|
/Zephyr-latest/scripts/pylib/pytest-twister-harness/tests/resources/ |
D | fifo_mock.py | 8 import threading 35 self.thread = threading.Thread(target=self._open(), daemon=True)
|
/Zephyr-latest/soc/intel/intel_adsp/tools/ |
D | remote-fw-service.py | 12 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/ |
D | README.rst | 16 * multi threading
|
/Zephyr-latest/scripts/pylib/twister/ |
D | expr_parser.py | 12 import threading 285 mutex = threading.Lock()
|
/Zephyr-latest/doc/kernel/services/ |
D | index.rst | 14 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,
|
D | polling.rst | 54 :c:func:`k_poll` was called, or due to the preemptive multi-threading
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | handlers.py | 21 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,))
|
D | harness.py | 13 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/ |
D | nothread.rst | 82 threading is disabled, but are within scope based on their subsystem, or
|
/Zephyr-latest/lib/posix/options/ |
D | Kconfig.profile | 59 threading.
|
/Zephyr-latest/modules/hal_silabs/wiseconnect/ |
D | CMakeLists.txt | 148 ${WISECONNECT_DIR}/components/device/silabs/si91x/wireless/threading/sli_si91x_multithreaded.c
|
/Zephyr-latest/modules/mbedtls/ |
D | CMakeLists.txt | 114 ${ZEPHYR_CURRENT_MODULE_DIR}/library/threading.c
|
/Zephyr-latest/doc/introduction/ |
D | index.rst | 57 * *Multi-threading Services* for cooperative, priority-based,
|
/Zephyr-latest/kernel/ |
D | Kconfig | 13 bool "Multi-threading" if ARCH_HAS_SINGLE_THREAD_SUPPORT 148 but some applications have a carefully designed threading
|
/Zephyr-latest/boards/native/doc/ |
D | bsim_boards_design.rst | 209 The threading description, as well as the general SOC and board architecture
|
D | arch_soc.rst | 405 layer and the native simulator CPU threading emulation (NCT).
|
/Zephyr-latest/doc/develop/test/ |
D | ztest.rst | 63 :c:macro:`ZTEST_F` with the userspace threading for the test.
|
/Zephyr-latest/doc/releases/ |
D | release-notes-3.4.rst | 369 * Enabled single-threading support. 1352 threading API and race conditions have been mitigated.
|
D | release-notes-3.0.rst | 966 * :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/ |
D | index.rst | 217 :ref:`its basic architecture<posix_arch_architecture>` regarding threading
|
12