Usage of Pthread

man pthread

Linux 内核只为线程的支持提供了底层原语,比如 clone() 系统调用。多线程库在用户空间。POSIX(Portable Operating System Interface,可移植操作系统接口)对线程库进行了标准化。开发人员称之为 POSIX 线程,简称为 Pthreads。 [Read More]
Tags: Linux C++