summaryrefslogtreecommitdiff
path: root/core/src/xmake/machine.c
diff options
context:
space:
mode:
authorruki <[email protected]>2016-07-12 22:26:23 +0800
committerruki <[email protected]>2016-07-12 22:26:23 +0800
commit0f7173fe7610408d1f947517e48447a4b0fd4461 (patch)
tree836124606b169f00b04343f407d5486a42208f8a /core/src/xmake/machine.c
parent2df6235f8b2b3c88c94676720c2e4076b2d0d9d9 (diff)
add process.waitlist interfaces
Diffstat (limited to 'core/src/xmake/machine.c')
-rwxr-xr-xcore/src/xmake/machine.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/xmake/machine.c b/core/src/xmake/machine.c
index e7a032aa0..835060fdb 100755
--- a/core/src/xmake/machine.c
+++ b/core/src/xmake/machine.c
@@ -88,6 +88,7 @@ tb_int_t xm_string_startswith(lua_State* lua);
tb_int_t xm_process_open(lua_State* lua);
tb_int_t xm_process_openv(lua_State* lua);
tb_int_t xm_process_wait(lua_State* lua);
+tb_int_t xm_process_waitlist(lua_State* lua);
tb_int_t xm_process_close(lua_State* lua);
/* //////////////////////////////////////////////////////////////////////////////////////
@@ -144,6 +145,7 @@ static luaL_Reg const g_process_functions[] =
{ "open", xm_process_open }
, { "openv", xm_process_openv }
, { "wait", xm_process_wait }
+, { "waitlist", xm_process_waitlist }
, { "close", xm_process_close }
, { tb_null, tb_null }
};