kern
annotate src/rtc.h @ 71:c7bd6ec7b946
changed test_proc to modify memory after the fork in order to try out copy-on-write,
by pushing the result of getpid on the stack.
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Thu, 13 Oct 2011 05:22:35 +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_ */ |