Home
last modified time | relevance | path

Searched refs:pthread (Results 1 – 25 of 107) sorted by relevance

12345

/hal_espressif-2.7.6/components/pthread/
Dpthread.c134 static void pthread_delete(esp_pthread_t *pthread) in pthread_delete() argument
136 SLIST_REMOVE(&s_threads_list, pthread, esp_pthread_entry, list_node); in pthread_delete()
137 free(pthread); in pthread_delete()
229 esp_pthread_t *pthread = calloc(1, sizeof(esp_pthread_t)); in pthread_create() local
230 if (pthread == NULL) { in pthread_create()
277 pthread->detached = true; in pthread_create()
281 pthread->detached = false; in pthread_create()
287 pthread->task_arg = task_arg; in pthread_create()
302 free(pthread); in pthread_create()
310 pthread->handle = xHandle; in pthread_create()
[all …]
DKconfig8 Priority used to create new tasks with default pthread parameters.
14 Stack size used to create new tasks with default pthread parameters.
17 int "Minimum allowed pthread stack size"
20 Minimum allowed pthread stack size set in attributes passed to pthread_create
23 bool "Default pthread core affinity"
45 default "pthread"
DCMakeLists.txt1 idf_component_register(SRCS "pthread.c"
/hal_espressif-2.7.6/components/cxx/
DCMakeLists.txt3 # Make sure that pthread is in component list
4 PRIV_REQUIRES pthread)
9 # Force pthread to also appear later than stdc++ in link line
11 idf_component_get_property(pthread pthread COMPONENT_LIB)
12 target_link_libraries(stdcpp_pthread INTERFACE stdc++ $<TARGET_FILE:${pthread}>)
/hal_espressif-2.7.6/examples/cxx/pthread/
DREADME.md1 # C++ pthread Example
5pthread](https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/system/esp_pthread.ht…
21 * The default ESP-pthread configuration may also be modified under `Component config > PThreads`
44 I (0) pthread: This thread (with the default name) may run on any core.Core id: 1, prio: 5, minimum…
/hal_espressif-2.7.6/docs/en/api-reference/system/
Desp_pthread.rst1 ESP-pthread
7 This module offers Espressif specific extensions to the pthread library that can be used to influen…
15 Example to tune the stack size of the pthread:
/hal_espressif-2.7.6/components/newlib/
DCMakeLists.txt12 "pthread.c"
39 # Forces the linker to include heap, syscall, pthread and retargetable locks from this component,
/hal_espressif-2.7.6/components/pthread/test/
DCMakeLists.txt3 PRIV_REQUIRES cmock test_utils pthread)
/hal_espressif-2.7.6/components/newlib/platform_include/
Dpthread.h21 #include_next <pthread.h>
/hal_espressif-2.7.6/tools/unit-test-app/configs/
Drelease2 TEST_COMPONENTS=freertos esp32 esp_system esp_ipc esp_timer driver heap pthread soc spi_flash vfs
Drelease_c32 TEST_COMPONENTS=freertos esp32c3 esp_system esp_ipc esp_timer driver heap pthread soc spi_flash vfs
Drelease_s32 TEST_COMPONENTS=freertos esp32s3 esp_system esp_ipc esp_timer driver heap pthread soc spi_flash vfs
Dpsram_22 TEST_COMPONENTS=esp32 esp_ipc esp_system esp_timer mbedtls spi_flash heap pthread soc
Ddefault_s2_23 TEST_COMPONENTS=pthread soc spi_flash vfs
Ddefault_s33 TEST_COMPONENTS=freertos esp32s3 esp_ipc esp_system esp_timer driver heap pthread soc spi_flash vfs
Ddefault_c33 TEST_COMPONENTS=freertos esp32c3 esp_ipc esp_system esp_timer driver heap pthread soc spi_flash vfs
Ddefault3 TEST_COMPONENTS=freertos esp32 esp_ipc esp_system esp_timer driver heap pthread soc spi_flash vfs
Drelease_s23 TEST_COMPONENTS=freertos esp32s2 esp_system esp_timer driver heap pthread soc spi_flash vfs
Ddefault_2_s23 …_update freertos esp32s2 esp_ipc esp_pm esp_system esp_timer driver heap pthread soc spi_flash vfs…
Dsingle_core3 TEST_COMPONENTS=freertos esp32 esp_system esp_timer driver heap pthread soc spi_flash vfs
Ddefault_23 …pp_update freertos esp32 esp_ipc esp_pm esp_system esp_timer driver heap pthread soc spi_flash vfs…
Ddefault_2_c33 …_update freertos esp32c3 esp_ipc esp_pm esp_system esp_timer driver heap pthread soc spi_flash vfs…
Dsingle_core_2_s23 …_update freertos esp32s2 esp_ipc esp_system esp_pm esp_timer driver heap pthread soc spi_flash vfs…
Drelease_2_s23 …_update freertos esp32s2 esp_ipc esp_pm esp_system esp_timer driver heap pthread soc spi_flash vfs…
/hal_espressif-2.7.6/docs/en/api-guides/
Dthread-local-storage.rst12 - :ref:`pthread-api`: ESP-IDF's pthread API.
40 The ESP-IDF provides the following pthread API to manage thtread local variables:

12345