sleep.c

来自「RTEMS (Real-Time Executive for Multiproc」· C语言 代码 · 共 32 行

C
32
字号
/* *  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 + =
减小字号Ctrl + -
显示快捷键?