Linux 종료 스레드

pthread 루틴은 두 가지 상태가 있습니다.joinable (비분리) 상태와detachable (분리) 상태입니다. 기본값은joinable입니다.
joinable: 라인 함수가 스스로 종료 또는 pthread 로 되돌아올 때exit에서는 스레드에 사용되는 자원을 방출하지 않습니다. 창고, 스레드 설명자 등을 포함합니다. (어떤 사람은 8k가 넘고 경험증이 없다고 합니다.)
detachable: 라인이 끝날 때 자동으로 자원을 방출합니다.
Linux man page said:
When a joinable thread terminates, its memory resources (thread descriptor and stack) are not deallocated until another thread performs pthread_join on it. Therefore, pthread_join must be called  once  for each joinable thread created to avoid memory leaks.
따라서joinable 라인이 실행된 후 pthread 를 사용하지 않습니다Join은 메모리 유출을 일으킬 수 있습니다.
해결 방법:
1.//스레드를 만들기 전에 PTHREAD 설정CREATE_DETACHED 속성

    
    
    
    
pthread_attr_t attr;
pthread_t thread;
pthread_attr_init (
& attr);
pthread_attr_setdetachstat(
& attr, PTHREAD_CREATE_DETACHED);
pthread_create (
& thread, & attr, & thread_function, NULL);
pthread_attr_destroy (
& attr);

2. 라인이joinable일 때pthread 사용join에서 루틴 반환 값을 가져오고 자원을 방출합니다.
3. 라인이joinable일 때 라인에서pthread 를 호출할 수 있습니다detach(pthread_self());자신을 분리하다.
분류: c/c++ 다중 루틴, 매일 총결산

좋은 웹페이지 즐겨찾기