⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 time.c

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 C
字号:
/* *  $Id: time.c,v 1.32 2001/01/24 14:17:28 joel Exp $ */#if HAVE_CONFIG_H#include "config.h"#endif#include <assert.h>#include <time.h>#include <errno.h>#include <rtems/system.h>#include <rtems/score/isr.h>#include <rtems/score/thread.h>#include <rtems/score/tod.h>#include <rtems/seterr.h>#include <rtems/posix/time.h>/*PAGE * *  4.5.1 Get System Time, P1003.1b-1993, p. 91 *//* Using the implementation in newlib */#if 0time_t time(  time_t   *tloc){  time_t  seconds_since_epoch;  /*   *  No error is the time of day is not set.   For RTEMS the system time   *  starts out at the rtems epoch.   */  /*   *  Internally the RTEMS epoch is 1988.  This must be taken into account.   */  seconds_since_epoch = _TOD_Seconds_since_epoch;       seconds_since_epoch += POSIX_TIME_SECONDS_1970_THROUGH_1988;  if ( tloc )    *tloc = seconds_since_epoch;  return seconds_since_epoch;}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -