Skip to content

Commit

Permalink
fix(pthread): Fix cxx pthread example build for linux platform
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianfunes79 committed Aug 9, 2024
1 parent 8e4454b commit 2733099
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 2 deletions.
6 changes: 4 additions & 2 deletions components/pthread/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
idf_build_get_property(target IDF_TARGET)
if(${target} STREQUAL "linux")
# Make pthread component an empty interface lib referencing host pthread for Linux target
idf_component_register()
set(sources "port/linux/pthread.c")
idf_component_register(
SRCS ${sources}
INCLUDE_DIRS include)
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)
target_link_libraries(${COMPONENT_LIB} INTERFACE Threads::Threads)
Expand Down
43 changes: 43 additions & 0 deletions components/pthread/port/linux/pthread.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
/*
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
/*
* pthread port for Linux build
*/

#include "esp_pthread.h"
#include <string.h>

/**
* @brief Creates a default pthread configuration based
* on the values set via menuconfig.
*
* @return
* A default configuration structure.
*/
esp_pthread_cfg_t esp_pthread_get_default_config(void)
{
esp_pthread_cfg_t cfg = {
.stack_size = CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT,
.prio = CONFIG_PTHREAD_TASK_PRIO_DEFAULT,
.inherit_cfg = false,
.thread_name = NULL,
.pin_to_core = 0,
.stack_alloc_caps = 0,
};

return cfg;
}

esp_err_t esp_pthread_set_cfg(const esp_pthread_cfg_t *cfg)
{
return ESP_OK;
}

esp_err_t esp_pthread_get_cfg(esp_pthread_cfg_t *p)
{
memset(p, 0, sizeof(*p));
return ESP_ERR_NOT_FOUND;
}

0 comments on commit 2733099

Please sign in to comment.