- 论坛徽章:
- 0
|
#include
#include
#include
#include
#include
#include
#include
void cleanup(void *arg)
{
printf("我靠!我是清理函数,压栈的顺序知道不?还不懂??先进后出!!!数据结构....\n");
printf("%s\n",arg) ;
return;
}
void* pthread1_handle(void *str)
{
pthread_cleanup_push(cleanup,"i am the 1st thread 1st push");
pthread_cleanup_push(cleanup,"i am the 1st thread 2nd push");
assert(str!=NULL);//if(str!=NULL)
printf("%s\n",str);
printf("1st 线程ID:%d\n",pthread_self());
printf("1st 线程所属进程的ID: %d\n",getpid());
pthread_cleanup_pop(1);
pthread_cleanup_pop(1);
pthread_exit((void*)1);
}
void* pthread2_handle(void *str)
{
pthread_cleanup_push(cleanup,"i am the 2th thread 1st push");
pthread_cleanup_push(cleanup,"i am the 2th thread 2nd push");
assert(str!=NULL);//if(str!=NULL)
printf("%s\n",str);
printf("2nd 线程ID:%d\n",pthread_self());
printf("2nd 线程所属进程的ID: %d\n",getpid());
pthread_cleanup_pop(2);
pthread_cleanup_pop(2);
pthread_exit((void*)2);
}
int main(int argc,char **argv)
{
char buf1[]="我是第一个线程的参数";
char buf2[]="我是第二个线程的参数";
void *p1=NULL,*p2=NULL;
int reval=0;
pthread_t tid1 = 0,tid2 = 0;
reval = pthread_create(&tid1,NULL,(void*)pthread1_handle,buf1);
if(reval != 0)
{
printf("我靠,看了PID才知道是怎么回事情\n");
printf("好像可以看看失败原因:%s",strerror(errno));
exit(errno);
}
reval = pthread_create(&tid2,NULL,(void*)pthread2_handle,buf2);
if(reval != 0)
{
printf("我靠,看了PID才知道是怎么回事情\n");
printf("好像可以看看失败原因:%s",strerror(errno));
exit(errno);
}
if(pthread_join(tid1,&p1) != 0)
{
printf("已经处于分离状态了啊,算了\n");
printf("%s\n",strerror(errno));
exit(errno);
}
printf("1st thread exit code:%d\n",(int)p1);
if(pthread_join(tid2,&p2) != 0)
{
printf("已经处于分离状态了啊,算了\n");
printf("%s\n",strerror(errno));
exit(errno);
}
printf("2nd thread exit code:%d\n",(int)p2);
exit(0);//return 0此处的作用相同
}
结果: gcc -o n2threads n2threads.c -lpthread
./n2threads
我是第一个线程的参数
1st 线程ID:-1208583280
1st 线程所属进程的ID: 4776
我靠!我是清理函数,压栈的顺序知道不?还不懂??先进后出!!!数据结构....
i am the 1st thread 2nd push
我靠!我是清理函数,压栈的顺序知道不?还不懂??先进后出!!!数据结构....
i am the 1st thread 1st push
1st thread exit code:1
我是第二个线程的参数
2nd 线程ID:-1219073136
2nd 线程所属进程的ID: 4776
我靠!我是清理函数,压栈的顺序知道不?还不懂??先进后出!!!数据结构....
i am the 2th thread 2nd push
我靠!我是清理函数,压栈的顺序知道不?还不懂??先进后出!!!数据结构....
i am the 2th thread 1st push
2nd thread exit code:2
pthread_cleanup_push与pthread_cleanup_pop:
#define pthread_cleanup_push(rtn,arg) { \
struct _pthread_handler_rec __cleanup_handler, **__head; \
__cleanup_handler.rtn = rtn; \
__cleanup_handler.arg = arg; \
(void) pthread_getspecific(_pthread_handler_key, &__head); \
__cleanup_handler.next = *__head; \
*__head = &__cleanup_handler;
#define pthread_cleanup_pop(ex) \
*__head = __cleanup_handler.next; \
if (ex) (*__cleanup_handler.rtn)(__cleanup_handler.arg); \
}
回收线程的资源:
主线程:pthread_join()
线程本身:pthread_detach(pthread_self());
pid相同看来linux 2.6.18不是用do_fork()来实现线程的,看来环境编程上的测试环境该变了;
assert:很重要,是的,就是断言的意思。表达式为假的话后面的语句不执行。改变条件试下就对了
想起了VC里面的调试选项:debug 和 release,就是调试的开关的问题:
优化的问题:volatile
没有使用的变量,内存越界
frame的指针替换 ,太容易崩溃了,ebp是程序的尺码
DLL:加强了检查的力度
/gz:auto变量编译器帮你赋值
exit与return的区别关键:
return:从函数中返回,清理堆栈
exit:进行了fflush等动作后还是要最终调用系统调用_exit,除了系统堆栈这个资源外,其他的资源被系 统回收,进程变为zomible,等父进程wait回收掉最后的资源,只是给父进程一个交代。或者认义父 init,他的干儿子真TMDD多啊
线程的统计:main_thread,pthread_manager,pthread_create()
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/35079/showart_271071.html |
|