git-interrupt_timeout
authorGNU Libc Maintainers <debian-glibc@lists.debian.org>
Tue, 15 Mar 2022 22:48:49 +0000 (22:48 +0000)
committerAurelien Jarno <aurel32@debian.org>
Tue, 15 Mar 2022 22:48:49 +0000 (22:48 +0000)
commit 6849ff19657e8f7e6a83e9aaae07eb45269dc7d4
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
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

hurd/hurdsig.c

index d6b692a9db8394d54cae5610ca580250688a29d0..dab6fbc9892ec6384c63e742411438c74a1b6ac4 100644 (file)
@@ -59,7 +59,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;
 \f
 static void
 default_sigaction (struct sigaction actions[NSIG])