diff options
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 |
