Searched refs:threads (Results 101 – 125 of 205) sorted by relevance
123456789
/Zephyr-latest/doc/services/task_wdt/ |
D | index.rst | 19 to supervise multiple threads or tasks (called watchdog channels).
|
/Zephyr-latest/subsys/debug/coredump/ |
D | coredump_core.c | 134 for (current = _kernel.threads; current; current = current->next_thread) { in process_memory_region_list()
|
/Zephyr-latest/kernel/ |
D | Kconfig.smp | 69 valid set of high priority threads, it comes at a performance cost. 96 lower priority than all the threads currently executing on other CPUs.
|
/Zephyr-latest/subsys/testsuite/ztest/src/ |
D | ztress.c | 37 static struct k_thread threads[CONFIG_ZTRESS_MAX_THREADS]; variable 366 tids[i] = k_thread_create(&threads[i], stacks[i], CONFIG_ZTRESS_STACK_SIZE, in ztress_execute()
|
/Zephyr-latest/arch/arm/core/ |
D | Kconfig | 263 threads performing secure function calls, are allowed to be 265 threads many not be context-switched-out while doing a Secure 272 Store the EXC_RETURN value when switching threads. 273 This is needed when switching between threads that differ in either
|
/Zephyr-latest/doc/kernel/memory_management/ |
D | heap.rst | 6 Zephyr provides a collection of utilities that allow threads to 31 The heap supports blocking operation, allowing threads to go to sleep 57 Simultaneous use from separate threads is disallowed. 146 threads to dynamically allocate memory from a common memory region in
|
/Zephyr-latest/samples/subsys/zbus/runtime_obs_registration/ |
D | README.rst | 11 In this sample, we have the threads producer and consumer. In the middle of the communication, we h…
|
/Zephyr-latest/drivers/ethernet/nxp_imx_netc/ |
D | Kconfig | 41 work to do. This is to prevent the RX thread to starve other threads. Each
|
/Zephyr-latest/arch/x86/core/ |
D | Kconfig.ia32 | 85 supporting user-level threads that are protected from each other and 137 This hidden option allows multiple threads to use the floating point
|
D | Kconfig.intel64 | 91 supporting user-level threads that are protected from each other and
|
/Zephyr-latest/doc/develop/languages/c/ |
D | newlib.rst | 103 be accessed from the user mode threads. 123 Newlib are thread safe and may be simultaneously called by multiple threads.
|
/Zephyr-latest/include/zephyr/linker/common-rom/ |
D | common-rom-kernel-devices.ld | 76 * threads declared with K_THREAD_DEFINE()
|
/Zephyr-latest/lib/libc/newlib/ |
D | Kconfig | 42 and user mode threads need to access this heap, then this is necessary
|
/Zephyr-latest/lib/libc/picolibc/ |
D | Kconfig | 186 bool "support multiple threads using retargetable locking API" 196 multiple threads have a reliable mechanism for detecting libc
|
/Zephyr-latest/drivers/ethernet/ |
D | Kconfig.nxp_s32_netc | 36 work to do. This is to prevent the RX thread to starve other threads. Each
|
D | Kconfig.nxp_s32_gmac | 77 threads. Each received frame counts as one unit of work.
|
/Zephyr-latest/doc/develop/sca/ |
D | codechecker.rst | 45 - The number of threads to use in analysis. (default: <CPU count>)
|
/Zephyr-latest/subsys/testsuite/ |
D | Kconfig | 103 This option indicates that a test case puts threads in user mode, 113 just with all threads in supervisor mode.
|
/Zephyr-latest/arch/ |
D | Kconfig | 298 bool "User mode threads" 305 When enabled, threads may be created or dropped down to user mode, 392 bitfield (in bytes) and imposes a limit on how many threads can 930 have the following access policies applied for all threads, including 931 supervisor threads: 968 across context switches to allow multiple threads to perform concurrent 981 When this option is enabled, by default, threads may use the floating 985 If it is necessary for multiple threads to perform concurrent floating 999 across context switches to allow multiple threads to perform concurrent 1004 context must be preserved when switching such threads in and out.
|
/Zephyr-latest/arch/x86/ |
D | Kconfig | 121 by threads. 128 by threads. 325 bool "Use a single page table for all threads" 425 If enabled, this applies to all threads in the system.
|
/Zephyr-latest/doc/services/zbus/ |
D | index.rst | 13 threads to talk to one another in a many-to-many way. 23 paradigms that enable threads to communicate synchronously or asynchronously through shared memory. 26 messages. Additionally, besides other actions, threads can publish and observe channels. When a 32 (hardware independent) talks to other threads via software bus. Note that the threads are decoupled 161 To illustrate the VDED execution, consider the example illustrated below. We have four threads in 188 represents the time, and the Y-axis represents the priority of threads. Channel A's message, 226 - The VDED copies the message and sends that to MS1 and MS2 sequentially. Notice the threads 365 * No other threads (that are not involved in the communication) with priority between T1 and S1 can 383 high-speed stream of bytes between threads. The :ref:`Pipe <pipes_v2>` kernel object solves this 899 Use zbus to transfer data (messages) between threads in one-to-one, one-to-many, and many-to-many
|
/Zephyr-latest/doc/kernel/services/threads/ |
D | nothread.rst | 85 capabilities that were not originally implemented to work with threads
|
/Zephyr-latest/subsys/net/ip/ |
D | Kconfig | 431 prompt "How the network RX/TX threads should work" 433 Please select the RX/TX threads to be either pre-emptive or 437 bool "Use co-operative TX/RX threads" 440 With co-operative threads, the thread cannot be pre-empted. 443 bool "Use pre-emptive TX/RX threads [EXPERIMENTAL]" 447 With pre-emptive threads, the thread can be pre-empted. 459 Customise net threads priority by each. 466 Transmit traffic class threads priority will increase/decrease 475 Receive traffic class threads priority will increase/decrease
|
/Zephyr-latest/doc/connectivity/networking/ |
D | net-stack-architecture.rst | 74 An application typically consists of one or more :ref:`threads <threads_v2>` 162 These :ref:`threads <threads_v2>` might run in different contexts
|
/Zephyr-latest/doc/introduction/ |
D | index.rst | 58 non-preemptive, and preemptive threads with optional round robin 83 * Timeslicing: Enables time slicing between preemptible threads of equal
|
123456789