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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: rtc.h,v 1.2 1996/08/21 23:17:39 ecd Exp $
  2.  *
  3.  * rtc.h: Definitions for access to the Mostek real time clock
  4.  *
  5.  * Copyright (C) 1996 Thomas K. Dyas (tdyas@eden.rutgers.edu)
  6.  */
  7. #ifndef _RTC_H
  8. #define _RTC_H
  9. #include <linux/ioctl.h>
  10. struct rtc_time
  11. {
  12. int sec; /* Seconds (0-59) */
  13. int min; /* Minutes (0-59) */
  14. int hour; /* Hour (0-23) */
  15. int dow; /* Day of the week (1-7) */
  16. int dom; /* Day of the month (1-31) */
  17. int month; /* Month of year (1-12) */
  18. int year; /* Year (0-99) */
  19. };
  20. #define RTCGET _IOR('p', 20, struct rtc_time)
  21. #define RTCSET _IOW('p', 21, struct rtc_time)
  22. #endif