From d7748fb1b3f5e270a668840914e4f2c2e4cb00dd Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Fri, 21 Feb 2020 10:18:22 -0800 Subject: [PATCH] ircd::m::typing: Increase stack size for timeout worker; attribute; minor cleanup. --- matrix/typing.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/matrix/typing.cc b/matrix/typing.cc index 40baf0cff..c55a8bc7f 100644 --- a/matrix/typing.cc +++ b/matrix/typing.cc @@ -315,10 +315,14 @@ static bool timeout_check(); static void timeout_worker(); context timeout_context { - "typing", 128_KiB, context::POST, timeout_worker + "typing", + 256_KiB, + context::POST, + timeout_worker }; void +__attribute__((noreturn)) timeout_worker() { while(1)