mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-09 19:50:26 +03:00
Call pthread_detach() and spawning the purge.
This commit is contained in:
parent
bf3cfe24c9
commit
14a516b542
1
httpd.c
1
httpd.c
@ -286,6 +286,7 @@ static void *queue_thread(void *arg)
|
|||||||
pthread_t pth;
|
pthread_t pth;
|
||||||
|
|
||||||
pthread_create(&pth, NULL, purge_thread, NULL);
|
pthread_create(&pth, NULL, purge_thread, NULL);
|
||||||
|
pthread_detach(pth);
|
||||||
|
|
||||||
/* next purge time is tomorrow */
|
/* next purge time is tomorrow */
|
||||||
purge_time = t + 24 * 60 * 60;
|
purge_time = t + 24 * 60 * 60;
|
||||||
|
Loading…
Reference in New Issue
Block a user