Skip to content
This repository was archived by the owner on Nov 17, 2024. It is now read-only.
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
set timer based on maximum of wall_timeout and timeout
  • Loading branch information
shaunren authored and lw committed Aug 8, 2014
commit 66c235f47f93be463131f485f900fd9567c33adf
2 changes: 1 addition & 1 deletion isolate.c
Original file line number Diff line number Diff line change
Expand Up @@ -1107,7 +1107,7 @@ box_keeper(void)
{
sa.sa_handler = signal_alarm;
sigaction(SIGALRM, &sa, NULL);
set_timer(timeout+100);
set_timer((wall_timeout<timeout ? timeout : wall_timeout) + 100);
}

for(;;)
Expand Down