Skip to content

Commit

Permalink
child process kill support added
Browse files Browse the repository at this point in the history
  • Loading branch information
Haseenamol committed Nov 7, 2016
1 parent 5668e53 commit 556197a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webdriver/extension_wpe/wpe_driver/wpe_driver.cc
Expand Up @@ -86,7 +86,7 @@ void* WPEDriver::RunWpeProxy(void* pArg) {

wpeProxyPid = fork();
if (0 == wpeProxyPid) {
prctl(PR_SET_PDEATHSIG, SIGTERM);
prctl(PR_SET_PDEATHSIG, SIGHUP);
LogLevel minLogLevel;
StdOutLog* slog = StdOutLog::Get();
slog->get_min_log_level(&minLogLevel);
Expand Down

0 comments on commit 556197a

Please sign in to comment.