Threading Issue
1.Semantics of fork() and exec()
2.Signal handling
3.Thread cancellation
asynchronous cancellation : 立刻取消
deferred cancellation : 一個時間周期到才會取消
actual cancellation : 根據thread狀態取消
4.Thread pools
產生多個thread 並等待執行。
5.TLS(thread-local storage)
TLS 是在 thread 中佈置一塊空間,並讓 thread 外面可以觀測。
6.Light weight process (LWP)
7.Thread libraries : pthreads
8.Implicit threading methods