我正在用 C 语言创建一个线程,以便在运行时检查网页上的内容。我是想关闭这个线程,还是一旦它完成执行,它会自动被释放?
--> Imports
#include <stdbool.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <pthread.h>
--> Start thread
pthread_t thread_id;
pthread_create(&thread_id, NULL, threadFunction, NULL);
---> Thread function
void *threadFunction(void *vargp) {
//Do something...
return NULL;
}