wasm-micro-runtime/core/shared
tkernelcn 286ea35508
fixed(freertos): Fix crash when wasm app call pthread_exit(NULL) (#2970)
before the change, only support wasm app exit like:
```c
void *thread_routine(void *arg)
{
    printf("Enter thread\n");
    return NULL;
}
```
if call pthread_exit, it will crash:
```c
void *thread_routine(void *arg)
{
    printf("Enter thread\n");
    pthread_exit(NULL);
    return NULL;
}
```
This commit lets both upstairs work correctly, test pass on stm32f103 mcu.
2024-01-02 17:32:09 +08:00
..
coap Apply clang-format for core/shared and product-mini files (#785) 2021-10-14 09:12:07 +08:00
mem-alloc Add compilation flag to enable/disable heap corruption check (#2766) 2023-11-15 17:20:50 +08:00
platform fixed(freertos): Fix crash when wasm app call pthread_exit(NULL) (#2970) 2024-01-02 17:32:09 +08:00
utils Avoid reporting timestamp if custom logger is used (#2905) 2023-12-14 14:55:17 +08:00