C++ 및 STL에서 손을 놓은지도 벌써 수년이 되어가건만, 백만년전쯤에 만들어놓은 STL 사이트 때문인지 가끔 STL 관련 문의를 메일로 받곤 하는데, 오늘 아침은 STL에서의 thread-safety에 관한 문의 메일을 받았다. STL로 thread programming을 해본 적이 없는 내가 답변할 자격이 있는건가.
Thread-safety는 'Standard C++ Library'에서 강제하는 사항이 아니니까, library implementation마다 구현 수준이 약간씩 다른데, 좀 더 general한 답변을 위해 관련 내용이 담긴 링크를 알려주었다.
Thread-safety는 'Standard C++ Library'에서 강제하는 사항이 아니니까, library implementation마다 구현 수준이 약간씩 다른데, 좀 더 general한 답변을 위해 관련 내용이 담긴 링크를 알려주었다.
- MS Visual C++
- GCC 3.0 (or later) g++
- simultaneous read access to the same container from within separate threads is safe
- simultaneous access to distinct containers (not shared between threads) is safe
- user must provide synchronization for all accesses if any thread may modify shared container
'프로그래밍' 카테고리의 다른 글
Visual Assist - Edit Snppet (0) | 2011.07.22 |
---|---|
STL은 멀티 쓰레드에 안전하지 않습니다. (0) | 2011.07.19 |
이클립스 color theme (0) | 2011.07.19 |
visual assist 단축키 할당 (0) | 2011.07.19 |
1UL이 뭔가요 (0) | 2011.07.12 |