mirror of
https://github.com/matrix-construct/construct
synced 2025-01-14 00:34:18 +01:00
ircd:Ⓜ️:typing: Increase stack size for timeout worker; attribute; minor cleanup.
This commit is contained in:
parent
055fa1ee74
commit
d7748fb1b3
1 changed files with 5 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue