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
'Programming' 카테고리의 다른 글
Modal VS Modeless Dialog (0) | 2021.11.05 |
---|---|
C# float seconds to time format | C# 시간 초 값을 시간 형식으로 얻어 오기 (0) | 2021.11.01 |
c++에서 char 문자열로 생성 및 할당 하는 방법 (0) | 2021.06.08 |
예전에 처음 C++를 배울때 영어 발음을 씨뿔뿔이라고 배웠고 나도 이게 익숙 하다. (0) | 2021.06.02 |
c++ std map 사용 하여 key value 리스트 만들기 - 마지막 항목 얻기 (0) | 2021.05.28 |