From 46a7f24c84299bb1ad63de725f67d1df5dffc2dc Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Tue, 9 Oct 2018 22:27:59 +0200 Subject: 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. --- hurd/hurdsig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hurd/hurdsig.c') diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c index aa82f63..48179b4 100644 --- a/hurd/hurdsig.c +++ b/hurd/hurdsig.c @@ -57,7 +57,7 @@ unsigned long int __hurd_sigthread_stack_end; struct hurd_sigstate *_hurd_sigstates; /* 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]) -- cgit v1.1