kern

annotate src/rtc.h @ 68:0a205396e1a0

- added a generic red-black tree data structure - added a VM map as an red-black tree of vm_pages in the process structure - constructed the vm map of the memory passed by the kernel initially to the first process.
author John Tsiombikas <nuclear@mutantstargoat.com>
date Mon, 10 Oct 2011 04:16:01 +0300
parents 2c401f69128e
children
rev   line source
nuclear@36 1 #ifndef _RTC_H_
nuclear@36 2 #define _RTC_H_
nuclear@36 3
nuclear@40 4 #include <time.h>
nuclear@40 5
nuclear@37 6 /* the time read from rtc during init */
nuclear@37 7 time_t start_time;
nuclear@37 8
nuclear@36 9 void init_rtc(void);
nuclear@36 10
nuclear@36 11 #endif /* _RTC_H_ */