关于select函数中struct timeval问题
如果select调用中设置了等待时间,那么每次调用时都需要重新对这个时间赋值么?就像对fd_set处理一样。 例如: fd_set readfd; struct timval tv; while(1) { FD_ZERO(&readfd); FD_SET(fd, &readfd); tv.tv_sec = 2; tv.tv_usec = 0;