time.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Extracting time information from ARCS prom.
  7.  *
  8.  * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
  9.  */
  10. #include <linux/init.h>
  11. #include <asm/arc/types.h>
  12. #include <asm/sgialib.h>
  13. struct linux_tinfo * __init
  14. ArcGetTime(VOID)
  15. {
  16. return (struct linux_tinfo *) ARC_CALL0(get_tinfo);
  17. }
  18. ULONG __init
  19. ArcGetRelativeTime(VOID)
  20. {
  21. return ARC_CALL0(get_rtime);
  22. }