Home
last modified time | relevance | path

Searched refs:statloc (Results 1 – 3 of 3) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dserver.c1230 int statloc; in serverCron() local
1233 if ((pid = wait3(&statloc,WNOHANG,NULL)) != 0) { in serverCron()
1234 int exitcode = WEXITSTATUS(statloc); in serverCron()
1237 if (WIFSIGNALED(statloc)) bysignal = WTERMSIG(statloc); in serverCron()
H A Daof.c214 int statloc; in killAppendOnlyChild() local
221 while(wait3(&statloc,0,NULL) != server.aof_child_pid); in killAppendOnlyChild()
H A Dsentinel.c819 int statloc; in sentinelCollectTerminatedScripts() local
822 while ((pid = wait3(&statloc,WNOHANG,NULL)) > 0) { in sentinelCollectTerminatedScripts()
823 int exitcode = WEXITSTATUS(statloc); in sentinelCollectTerminatedScripts()
828 if (WIFSIGNALED(statloc)) bysignal = WTERMSIG(statloc); in sentinelCollectTerminatedScripts()