敏感纸飞机

文章
7
资源
0
加入时间
2年10月21天

使用select接口写高精确延时

使用select接口写高精确延时。select接口int select(int maxfdp, fd_set *readset, fd_set *writeset, fd_set *exceptset,struct timeval *timeout);原理利用select的timeout参数实现定时器; 设置timeval的值,而将其他参数都置为NULL,当内部时间耗尽后select便会退出。示例void usleep(unsigned long usec){ str.