Переглянути джерело

Call pthread_detach() and spawning the purge.

default 3 роки тому
батько
коміт
14a516b542
1 змінених файлів з 1 додано та 0 видалено
  1. 1 0
      httpd.c

+ 1 - 0
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;