我的程序中有两个线程正在运行。一个是向另一个发送数据。套接字在两个线程上都连接良好,并且接收线程正在接受连接。但是,一旦调用了 recv,它就只是坐在那里阻塞,就好像它什么都没有进入一样,尽管另一个线程正在发送。
发送线程
send(orig_sock, buf, BUFSIZ,0);
printf("Client sending chunk\n");
printf 设法显示出来。
接收线程
printf("START ACCEPTING\n");
if ((new_sock = accept( orig_sock, (struct sockaddr *) &clnt_adr, &clnt_len)) < 0) {
perror("accept error");
close(orig_sock);
return NULL;
}
printf("PASS ACCEPT\n");
if ( fork( ) == 0 ) { // Generate a CHILD
printf("FORK\n");
len=recv(new_sock, buf, BUFLEN,0 );
printf("message received");
receiveBuffer.push(*p);
//write(new_sock, buf, len);
//if ( buf[0] == '.' ) break;
printf("Did not receive message\n");
close(new_sock);
return NULL;
} else
close(new_sock);
直到“FORK”的所有消息都被显示,并且线程挂在 recv 调用上。buf 被定义为static char buf[BUFSIZ];
recv 调用看不到任何数据的任何原因?