📄 usleep.c
字号:
/* libc/sys/linux/usleep.c - usleep function *//* Written 2002 by Jeff Johnston */#include <errno.h>#include <sys/types.h>#include <sys/time.h>#include <linux/times.h>int usleep(__useconds_t useconds){ struct timespec ts; ts.tv_sec = (long int)useconds / 1000000; ts.tv_nsec = ((long int)useconds % 1000000) * 1000; if (!nanosleep(&ts,&ts)) return 0; if (errno == EINTR) return ts.tv_sec; return -1;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -