0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 20:28:52 +02:00

ircd:Ⓜ️:typing: Increase stack size for timeout worker; attribute; minor cleanup.

This commit is contained in:
Jason Volk 2020-02-21 10:18:22 -08:00
parent 055fa1ee74
commit d7748fb1b3

View file

@ -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)