好难受啊,为什么服务端说挂就挂,明明只是客户端关闭而已,服务端怎么能挂呢?
想想,如果手机上使用一个聊天程序的时候,手机端关闭了聊天程序,那么远端服务器程序总不能说挂就挂吧!所以一定要查明真相。
1. 跟踪代码查找到进程退出的源头
之前服务端源码:https://www.cnblogs.com/songsongman/p/11187844.html
查阅代码发现,代码主体在while(1)里面,所以最可疑的地方在于accpet,pthread_create, pthread_join和创建的线程client_thread了
明摆着就是client_thread中出了问题,因为accpet,pthread_create, pthread_join中都有根据函数返回值做是否出错的判断,还是认怂好好看看线程做了什么:
void *client_thread(void *arg) { int clifd = *(int *)arg;char *s = "hello mysocketclient\n"; while(1) { usleep(1000000); write(clifd,s,strlen(s));//send(clifd,s,strlen(s),0); } return (void *)0; }