- 论坛徽章:
- 0
|
- #include <stdio.h>
- #include <stdlib.h>
- #include <pthread.h>
- void *thrd_func(void *arg);
- pthread_t tid;
- int main(){
- // 创建线程tid,且线程函数由thrd_func指向,是thrd_func的入口点,即马上执行此线程函数
- if (pthread_create(&tid,NULL,thrd_func,NULL)!=0) {
- printf("Create thread error!\n");
- exit(1);
- }
- printf("TID in pthread_create function: %u.\n",tid);
- printf("Main process: PID: %d,TID: %u.\n",getpid(),pthread_self());
-
- sleep(1); //race
- return 0;
- }
- void *thrd_func(void *arg){
- // printf("I am new thread!\n");
- printf("New process: PID: %d,TID: %u.\n",getpid(),pthread_self()); //why pthread_self
- printf("New process: PID: %d,TID: %u.\n",getpid(),tid); //why pthread_self
- pthread_exit(NULL); //退出线程
- // return ((void *)0);
- }
复制代码 程序运行结果是:
刚刚接触linux的线程编程,所以有很多不懂的地方,这是某位大牛博客上的一段程序。
1. 我不理解的是,在函数void thrd_func(void *)中,并没有定义tid这个变量,而使用了printf输出,这样不会造成内存引用错误吗?
2. 还有一点不理解的地方是, 为什么在main函数中pthread_self()返回值是3079558848,而在void thrd_func( )函数中thread_sel()返回值是3079555952.
希望大家可以解答一下。 |
|