1、sleep()函数:秒级休眠函数
#include <unistd.h >
unsigned int sleep(unsigned int unSeconds)
参数unSeconds表示需要休眠的秒数
2、usleep()函数:微秒级休眠函数
#include <unistd.h>
int usleep(useconds_t lMicroSeconds)
参数lMicroSeconds表示要休眠的微秒数
#ifndef _SUSECONDS_T
#define _SUSECONDS_T
typedef long suseconds_t/* signed # of microseconds */
#endif /* _SUSECONDS_T */
类型useconds_t定义在头文件/usr/include/sys/types.h中
3、nanosleep()函数:纳秒级休眠函数
#include <time.h>
int nanosleep(const struct timespec* rqtp, struct timespec* rmtp)
4、其它休眠函数:
select()、pselect()、poll()等
select()函数也可以精确到微秒,pselect()函数也可以精确到纳秒。
1、sleep()函数:秒级休眠函数#include <unistd.h >
unsigned int sleep(unsigned int unSeconds)
参数unSeconds表示需要休眠的秒数
2、usleep()函数:微秒级休眠函数
#include <unistd.h>
int usleep(useconds_t lMicroSeconds)
参数lMicroSeconds表示要休眠的微秒数
#ifndef _SUSECONDS_T
#define _SUSECONDS_T
typedef long suseconds_t/* signed # of microseconds */
#endif /* _SUSECONDS_T */
类型useconds_t定义在头文件/usr/include/sys/types.h中
3、nanosleep()函数:纳秒级休眠函数
#include <time.h>
int nanosleep(const struct timespec* rqtp, struct timespec* rmtp)
4、其它休眠函数:
select()、pselect()、poll()等
select()函数也可以精确到微秒,pselect()函数也可以精确到纳秒。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)