mac select 无法正常延迟



 void msleep(int m) {
    if(m > 0) {
        struct timeval tt;
        tt.tv_sec = 0;
        tt.tv_usec = m * 1000;
        select(0, NULL, NULL, NULL, &tt);
    }
}

在 Linux/Android 上都可以使用以上方法实现指定毫秒的延迟
为何在 OS X 上无法实现,而 iOS 上可以

select 调用之后 errno = 22,不了解如何修改参数,请大神指点一二~~
或者给出另外一个比较合理的跨平台延迟方案,usleep 在 Linux 上表现不理想,希望有其他答案

mac C++

小老虎水果糖 10 years, 3 months ago

以下程序的前两次调用没有错误,但第三次调用会出错。


 #include <sys/select.h>
#include <stdio.h>
void msleep(int m) {
    if(m > 0) {
        struct timeval tt;
        tt.tv_sec = 0;
        tt.tv_usec = m * 1000;
        select(0, NULL, NULL, NULL, &tt);
    }
}

int main(){
    msleep(10);
    perror("");
    msleep(999);
    perror("");
    msleep(1000);
    perror("");
}

你遇到errno 22也就是EINVAL是因为你给 msleep 传入的参数大于等于1000了,这样构造出来的就不是一个合法的 timeval ,因为 usec 不能大于等于1000000。
如果你需要更长的时间,你需要正确设置 sec usec

momika answered 10 years, 3 months ago

Your Answer