码迷,mamicode.com
首页 > Windows程序 > 详细

利用select函数的定时返回功能在Windows上实现微秒级的cpu休眠

时间:2016-07-31 14:30:28      阅读:522      评论:0      收藏:0      [点我收藏+]

标签:

说明:在调用该函数前要先调用WSAStartup初始化Winsock

void uSleep(uint32_t usec)
{
    struct timeval timeout;
    fd_set fds;
    FD_ZERO(&fds);
    int32_t fd = socket(AF_INET, SOCK_DGRAM, 0);
    FD_SET(fd, &fds);
    timeout.tv_sec = usec / 1000000;
    timeout.tv_usec = usec % 1000000;
    int ret = select(0, NULL, NULL, &fds, &timeout);
    if (0 > ret)
    {
        perror("select");
    }
    closesocket(fd);
}

 

利用select函数的定时返回功能在Windows上实现微秒级的cpu休眠

标签:

原文地址:http://www.cnblogs.com/tangxin-blog/p/5722873.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!