voidpthread_exit(void* retval); pthread_join():阻塞当前的线程,直到另外一个线程运行结束 intpthread_join(pthread_t thread,void**retval); 1、代码xx_pthread_exit.c 1#include <pthread.h>2#include <stdio.h>3#include <unistd.h>45#definedebug_Msg(fmt, arg...)\6do{\7printf("%s %d :", ...