diff options
| author | ruki <[email protected]> | 2025-08-27 23:27:52 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-08-28 11:35:54 +0800 |
| commit | 46dd9ecf582e7d30d5ce7eb18f248506f85bbe21 (patch) | |
| tree | cc8481903ed576f0d2b38db7f89f55db25706050 /core/src/xmake/engine.c | |
| parent | 6809e2d887d3f3f298b4e324a7580c55ac47562d (diff) | |
add mutex to thread
Diffstat (limited to 'core/src/xmake/engine.c')
| -rw-r--r-- | core/src/xmake/engine.c | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/core/src/xmake/engine.c b/core/src/xmake/engine.c index 2540dff07..1c5bc1a79 100644 --- a/core/src/xmake/engine.c +++ b/core/src/xmake/engine.c @@ -350,6 +350,7 @@ tb_int_t xm_thread_resume(lua_State* lua); tb_int_t xm_thread_mutex_init(lua_State* lua); tb_int_t xm_thread_mutex_exit(lua_State* lua); tb_int_t xm_thread_mutex_lock(lua_State* lua); +tb_int_t xm_thread_mutex_trylock(lua_State* lua); tb_int_t xm_thread_mutex_unlock(lua_State* lua); // open cjson @@ -641,16 +642,17 @@ static luaL_Reg const g_utils_functions[] = // the thread functions static luaL_Reg const g_thread_functions[] = { - { "thread_init", xm_thread_init } -, { "thread_exit", xm_thread_exit } -, { "thread_wait", xm_thread_wait } -, { "thread_resume", xm_thread_resume } -, { "thread_suspend", xm_thread_suspend } -, { "mutex_init", xm_thread_mutex_init } -, { "mutex_exit", xm_thread_mutex_exit } -, { "mutex_lock", xm_thread_mutex_lock } -, { "mutex_unlock", xm_thread_mutex_unlock } -, { tb_null, tb_null } + { "thread_init", xm_thread_init } +, { "thread_exit", xm_thread_exit } +, { "thread_wait", xm_thread_wait } +, { "thread_resume", xm_thread_resume } +, { "thread_suspend", xm_thread_suspend } +, { "mutex_init", xm_thread_mutex_init } +, { "mutex_exit", xm_thread_mutex_exit } +, { "mutex_lock", xm_thread_mutex_lock } +, { "mutex_trylock", xm_thread_mutex_trylock } +, { "mutex_unlock", xm_thread_mutex_unlock } +, { tb_null, tb_null } }; // the lua global instance for signal handler |
