wasm-micro-runtime/core
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
..
app-framework Readme refactoring (#2038) 2023-03-19 08:05:57 +08:00
app-mgr Corrects Zephyr include files for current versions of Zephyr (#2881) 2023-12-08 17:16:16 +08:00
deps wasi-nn: Simplify cmake and headers' location (#2308) 2023-06-26 09:29:05 +08:00
iwasm Enable AOT linux perf support (#2930) 2024-01-02 15:58:17 +08:00
shared fixed(freertos): Fix crash when wasm app call pthread_exit(NULL) (#2970) 2024-01-02 17:32:09 +08:00
config.h Enable AOT linux perf support (#2930) 2024-01-02 15:58:17 +08:00
version.h Update version number to 1.3.0 and update release notes (#2821) 2023-12-06 16:27:21 +08:00