[api/process] added missing fields and minor fix to pid()
This commit is contained in:
parent
98663461bb
commit
88704c6ecb
|
@ -132,7 +132,13 @@ static int process_pid(lua_State* L)
|
||||||
process_t* self = (process_t*) lua_touserdata(L, 1);
|
process_t* self = (process_t*) lua_touserdata(L, 1);
|
||||||
|
|
||||||
if(self->process){
|
if(self->process){
|
||||||
lua_pushnumber(L, reproc_pid(self->process));
|
int id = reproc_pid(self->process);
|
||||||
|
|
||||||
|
if(id > 0){
|
||||||
|
lua_pushnumber(L, id);
|
||||||
|
} else {
|
||||||
|
lua_pushnumber(L, 0);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
lua_pushnumber(L, 0);
|
lua_pushnumber(L, 0);
|
||||||
}
|
}
|
||||||
|
@ -393,9 +399,12 @@ static const struct luaL_Reg process[] = {
|
||||||
{"ERROR_PIPE", NULL},
|
{"ERROR_PIPE", NULL},
|
||||||
{"ERROR_WOULDBLOCK", NULL},
|
{"ERROR_WOULDBLOCK", NULL},
|
||||||
{"ERROR_TIMEDOUT", NULL},
|
{"ERROR_TIMEDOUT", NULL},
|
||||||
|
{"ERROR_INVALID", NULL},
|
||||||
{"STREAM_STDIN", NULL},
|
{"STREAM_STDIN", NULL},
|
||||||
{"STREAM_STDOUT", NULL},
|
{"STREAM_STDOUT", NULL},
|
||||||
{"STREAM_STDERR", NULL},
|
{"STREAM_STDERR", NULL},
|
||||||
|
{"WAIT_INFINITE", NULL},
|
||||||
|
{"WAIT_DEADLINE", NULL},
|
||||||
{NULL, NULL}
|
{NULL, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -417,6 +426,9 @@ int luaopen_process(lua_State *L)
|
||||||
lua_pushnumber(L, REPROC_ETIMEDOUT);
|
lua_pushnumber(L, REPROC_ETIMEDOUT);
|
||||||
lua_setfield(L, -2, "ERROR_TIMEDOUT");
|
lua_setfield(L, -2, "ERROR_TIMEDOUT");
|
||||||
|
|
||||||
|
lua_pushnumber(L, REPROC_EINVAL);
|
||||||
|
lua_setfield(L, -2, "ERROR_INVALID");
|
||||||
|
|
||||||
lua_pushnumber(L, REPROC_STREAM_IN);
|
lua_pushnumber(L, REPROC_STREAM_IN);
|
||||||
lua_setfield(L, -2, "STREAM_STDIN");
|
lua_setfield(L, -2, "STREAM_STDIN");
|
||||||
|
|
||||||
|
@ -426,5 +438,11 @@ int luaopen_process(lua_State *L)
|
||||||
lua_pushnumber(L, REPROC_STREAM_ERR);
|
lua_pushnumber(L, REPROC_STREAM_ERR);
|
||||||
lua_setfield(L, -2, "STREAM_STDERR");
|
lua_setfield(L, -2, "STREAM_STDERR");
|
||||||
|
|
||||||
|
lua_pushnumber(L, REPROC_INFINITE);
|
||||||
|
lua_setfield(L, -2, "WAIT_INFINITE");
|
||||||
|
|
||||||
|
lua_pushnumber(L, REPROC_DEADLINE);
|
||||||
|
lua_setfield(L, -2, "WAIT_DEADLINE");
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue