https://computing.llnl.gov/tutorials/pthreads/
网站翻译
常规:
pthread_create (thread,attr,start_routine,arg)
创建一个新线程并使它可执行。这个例程可以从代码中的任何位置调用任意次数。
参数:
线程:子例程返回的新线程的唯一标识符。
attr:一般是NULL,属性对象。
start_routine:线程创建后将执行的c程序,将需要执行的程序名称放在这个地方。
arg:传递给start_routine的参数。必须通过引用传递它作为类型无效的指针。如果不传递参数,则可以使用null。
进程可能创建的线程的最大数量取决于实现。试图超过限制的程序可能失败或产生错误的结果。
一旦创建,线程就是对等的,并可能创建其他线程。线程之间没有隐含的层次结构或依赖关系。
pthread_exit (status)
pthread_cancel (thread)
线程属性:默认情况,线程创建的时候就已经包含特定的属性,如果需要修改,则需要由程序员经由线程属性对象来修改。
pthread_attr_init (attr)
pthread_attr_destroy (attr)
Attributes include:
- Detached or joinable state
- Scheduling inheritance
- Scheduling policy
- Scheduling parameters
- Scheduling contention scope
- Stack size
- Stack address
- Stack guard (overflow) size
线程的绑定和调度:
a)一个线程一旦被创建他将何时被操作系统调度
b)线程运行在那一个进程之上
终止线程 pthread_exit():
几种方式表明线程已经结束了:
1、线程正常地从其启动例程返回。它的工作完成了。
2、线程对pthread_exit子例程进行调用,不管其工作是否完成。
3、该线程被另一个线程通过pthread_cancel例程取消。
4、由于调用exec()或exit(),整个进程结束
5、如果main()首先结束,不需要显式调用pthread_exit本身
pthread_exit()例程允许程序员指定可选的终止状态参数。这个可选参数通常返回给线程。
一个问题:如果不显式的调用pthread_exit(),一旦main()结束,所有的线程都会停止
通过让main()显式地称为pthread_exit()作为它做的最后一件事,main()将block and be kept alive to support the threads it creaded until they are done,以支持它创建的线程,直到它们完成。