在Unix中,nanosleep()函数用于将进程休眠指定的时间量。其原型如下:
#include <time.h>
int nanosleep(const struct timespec *req, struct timespec *rem);
nanosleep()函数接受两个参数:
nanosleep()函数会使进程休眠指定的时间,单位为纳秒。它会阻塞进程,直到休眠时间结束或者被信号中断。如果休眠时间超过1秒,那么可以使用sleep()函数。
nanosleep()函数的返回值为0表示休眠时间结束,如果返回-1,表示出现了错误,且错误代码保存在errno中。
示例用法:
#include <stdio.h>
#include <unistd.h>
#include <time.h>
int main() {
struct timespec req, rem;
req.tv_sec = 1; // 休眠1秒
req.tv_nsec = 0; // 休眠的纳秒数
if(nanosleep(&req, &rem) == -1) {
printf("nanosleep error\n");
return 1;
}
printf("Sleep complete\n");
return 0;
}
在上面的示例中,进程会休眠1秒。如果休眠被信号中断,剩余休眠时间将被保存在rem中。