Programming

pThread의 모든 것 - 예제와 함께 모든 함수를 볼 수 있다.

DragonTory 2021. 6. 10. 16:25
반응형

 

pThread의 모든 것

- 예제와 함께 모든 함수 잘 정리 한 곳이 있어 아래 링크 남김.

 

차례
1. 소개
2. 기본 쓰레드 함수
2.1. pthread_create
2.2. pthread_join
2.3. pthread_detach
2.4. pthread_exit
2.5. pthread_cleanup_push
2.6. pthread_cleanup_pop
2.7. pthread_self
3. 쓰레드 동기화 함수
3.1. pthread_mutex_init
3.2. pthread_mutex_destroy
3.3. pthread_mutex_lock
3.4. pthread_mutex_unlock
3.5. pthread_cond_init
3.6. pthread_cond_signal
3.7. pthread_cond_boradcast
3.8. pthread_cond_wait
3.9. pthread_cond_timewait
3.10. pthread_cond_destroy
3.11. 예제코드
4. Thread Attribute 함수
4.1. pthread_attr_init
4.2. pthread_attr_distroy
4.3. pthread_attr_getscope
4.4. pthread_attr_setscope
4.5. pthread_attr_getdetachstate
4.6. pthread_attr_setdetachstate
5. 쓰레드 시그널 관련
5.1. pthread_sigmask
5.2. pthread_kill
5.3. sigwait

https://www.joinc.co.kr/w/Site/Thread/Beginning/PthreadApiReference

 

Pthread API 레퍼런스

고친 과정고침 0.92004년 6월 30일 12시pthread 취소관련 api 추가고침 0.82003년 10월 9일 12시pthread 시그널 관련 api 추가 이 문서는 pthread 레퍼런스 문서이다. pthread 에서 제공하는 모든 함수의 레퍼런스

www.joinc.co.kr

 

반응형