pthread庫介面 (介紹)
----------------------------------------------------------------------
POSIX函式 功能
----------------------------------------------------------------------
pthread_create 建立一個執行緒
pthread_exit 退出執行緒
pthread_self 獲取執行緒ID
pthread_equal 檢查兩個執行緒ID是否相等
pthread_join 等待執行緒退出
pthread_detach 設定執行緒狀態為分離狀態
pthread_cancel 執行緒的取消
pthread_cleanup_push 執行緒退出, 註冊清理函式
pthread_cleanup_pop 執行緒退出, 執行清理函式
--------------------------------------------------------------------------