- 论坛徽章:
- 0
|
c++不懂,但是你的代码明显的问题读sockfd是不能放在线程里的,而且你现在用的是阻塞方式,改用select看看吧.把你的代码稍微改成c,你试试.
int sockfd;
void *echo( void *buf )
{
int len;
pthread_detach(pthread_self());
len = recvfrom(sockfd, buf, buflen, 0, (struct sockaddr*)&addr, &addrlen);
/*any functions you will do next */
}
int main( int argc, char **argv )
{
fd_set fdset;
struct timeval tmout={0,0};
sockfd = socket(AF_INET, SOCK_DGRAM, 0);
bind(sockfd, (struct sockaddr*)&addr, sizeof(addr);
pthread_t threads;
while(1) {
FD_ZERO(&fdset);
FD_SET(sockfd,&fdset);
if( select(sockfd+1,&fdset,NULL,NULL,&tmout) > 0 )
{
if( FD_ISSET( sockfd, &fdset ) )
pthread_create( &threads, NULL, echo, NULL);
}
}
} |
|