赞
踩
代码:
- #include<pthread.h>
- int pthread_create(pthread_t *thread, const pthread_atrr_t *atrr,void *(start_routine)(void *),void *arg);
二、const的作用
1、对变量声明只读特性,保护变量值以防被修改。
2、节省空间,避免不必要的内存分配。const修饰的变量在程序运行过程中只有一份拷贝。
3、提高程序运行效率。编译器不为普通const常量分配存储空间,而是将他们保存在符号表中,这使得它成为一个编译期间的常量,没有了存储和读取内存的操作。
功能:用来创建线程;线程调用pthread_create函数创建新线程后,当前线程会从pthread_create函数返回并继续向下执行,新线程执行函数指针start_routine所指的函数。
参数说明:
1.thread:待创建线程的id指针;
2.attr:设置待创建线程的属性,通常传入NULL;
3.start_routine:一个函数指针,指向一个参数为void*,返回值也为void *的函数,该函数为待创建线程的执行函数;
4.arg
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。