所以timeout
可以用来设置进程/命令的最终时间限制,如此处和这里提到。例如,timeout 300 sleep 1000
将在 300 秒后返回提示,而不是 1000 秒。
但是有没有办法在进程仍在运行时即时修改此限制?所以这就是我正在寻找的。
at time 0 : timeout 300 python long_run.py
at time 250 : <some way to extend the timeout limit by another 300 minutes or so>
我尝试了两种方法,但无法使其工作。
通过GDB
我试图使用 gdb 附加到timeout
进程。它显示了以下调用堆栈,但我找不到可以更新其值以增加时间限制的变量。
(gdb) where
#0 0x00007f10b49f6e8c in __libc_waitpid (pid=15753, stat_loc=0x7fff0c799f30, options=0) at ../sysdeps/unix/sysv/linux/waitpid.c:31
#1 0x00000000004022d8 in ?? ()
#2 0x00007f10b4643f45 in __libc_start_main (main=0x401fc0, argc=4, argv=0x7fff0c79a0e8, init=<optimized out>, fini=<optimized out>, rtld_fini=<optimized out>, stack_end=0x7fff0c79a0d8)
at libc-start.c:287
#3 0x0000000000402479 in ?? ()
0 0x00007f10b49f6e8c in __libc_waitpid (pid=15753, stat_loc=0x7fff0c799f30, options=0) at ../sysdeps/unix/sysv/linux/waitpid.c:31
31 ../sysdeps/unix/sysv/linux/waitpid.c: No such file or directory.
(gdb) p *(stat_loc)
$2 = 4204240
通过/proc/
我们可以在/proc//limits 或统计文件中做些什么来更新timeout
进程或子进程的超时限制。
根据Mark Plotnick非常有用的评论收敛问题的解决方案。
解决方案 1
kill -STOP
停止进程并kill -CONT
恢复进程。
因此kill -STOP pid_of_timeout
将停止超时/计时器运行,而子进程将继续运行。我们可以在需要时恢复计数器kill -CONT pid_of_timeout
这意味着在计时器中添加延迟,例如 50,以下就可以解决问题。
kill -STOP pid_of_timeout ; sleep 50 ; kill -CONT pid_of_timeout
解决方案 2
将超时过程附加到 gdb。它将冻结超时过程。完成后从 GDB 分离。
解决方案 3
修改超时的源代码,编译并运行它而不是系统"超时"过程。