From: GNU Libc Maintainers Date: Mon, 29 Oct 2018 20:36:01 +0000 (+0000) Subject: git-interrupt_timeout X-Git-Tag: archive/raspbian/2.27-8+rpi1^2~58 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=684f106a29530f895a6581e58e0c91f2fa17dd71;p=glibc.git git-interrupt_timeout commit 6849ff19657e8f7e6a83e9aaae07eb45269dc7d4 Author: Samuel Thibault Date: Tue Oct 9 22:27:59 2018 +0200 hurd: set interrupt timeout to 1 minute Seeing a server not able to get interrupted for 3s is not so surprising when e.g. a lot of writes are happening. 1 minute allows to actually notice the issue and be able to debug it. * hurd/hurdsig.c (_hurd_interrupted_rpc_timeout): Set to 60000. Gbp-Pq: Topic hurd-i386 Gbp-Pq: Name git-interrupt_timeout.diff --- diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c index 07b9c2023..7f8d53b18 100644 --- a/hurd/hurdsig.c +++ b/hurd/hurdsig.c @@ -56,7 +56,7 @@ struct hurd_sigstate *_hurd_sigstates; struct hurd_sigstate *_hurd_global_sigstate; /* Timeout for RPC's after interrupt_operation. */ -mach_msg_timeout_t _hurd_interrupted_rpc_timeout = 3000; +mach_msg_timeout_t _hurd_interrupted_rpc_timeout = 60000; static void default_sigaction (struct sigaction actions[NSIG])