Skip to content
Snippets Groups Projects
Commit fc47d869 authored by Simon McVittie's avatar Simon McVittie
Browse files

Fix numeric values in comments

parent e2c5a5ef
No related branches found
No related tags found
1 merge request!46When executing graphics helpers use timeout command to kill if needed.
......@@ -309,9 +309,9 @@ _srt_check_graphics (const char *helpers_path,
// Use timeout command to limit how long the helper can run
g_ptr_array_add (argv, g_strdup ("timeout"));
g_ptr_array_add (argv, g_strdup ("--signal=TERM"));
// Kill the helper after 3 seconds
// Kill the helper (if still running) 3 seconds after the TERM signal
g_ptr_array_add (argv, g_strdup ("--kill-after=3"));
// Send TERM signal after 1 second
// Send TERM signal after 10 seconds
g_ptr_array_add (argv, g_strdup ("10"));
if (rendering_interface == SRT_RENDERING_INTERFACE_GL)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment