📄 sleep.c
字号:
/* * 3.4.3 Delay Process Execution, P1003.1b-1993, p. 81 * * $Id: sleep.c,v 1.2 2001/01/24 14:17:28 joel Exp $ */#if HAVE_CONFIG_H#include "config.h"#endif#include <time.h>#include <unistd.h>#include <rtems/system.h>unsigned int sleep( unsigned int seconds){ /* XXX can we get away with this implementation? */ struct timespec tp; struct timespec tm; tp.tv_sec = seconds; tp.tv_nsec = 0; nanosleep( &tp, &tm ); return tm.tv_sec; /* seconds remaining */}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -