mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
## TactilityC - Add `tt_lvgl_lock()` and `tt_lvgl_unlock()` - Add `tt_thread_set_affinity()` - Add support for STL symbols ## Other - Add `Thread::setAffinity()` - `GuiService`: replace `#define` with `constexpr` - Remove log storage and log app for now - Split up ELF symbols into more groups
12 lines
337 B
C++
12 lines
337 B
C++
#include <symbols/pthread.h>
|
|
#include <pthread.h>
|
|
|
|
const esp_elfsym pthread_symbols[] = {
|
|
ESP_ELFSYM_EXPORT(pthread_create),
|
|
ESP_ELFSYM_EXPORT(pthread_attr_init),
|
|
ESP_ELFSYM_EXPORT(pthread_attr_setstacksize),
|
|
ESP_ELFSYM_EXPORT(pthread_detach),
|
|
ESP_ELFSYM_EXPORT(pthread_join),
|
|
ESP_ELFSYM_EXPORT(pthread_exit),
|
|
};
|