diff options
author | Roland McGrath <roland@gnu.org> | 2000-01-29 01:27:31 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2000-01-29 01:27:31 +0000 |
commit | 157a341929576a1867e15ba7d270e1e3cbe3c4a8 (patch) | |
tree | c58b872ed1a402c594ca0dd23c8876ef143bf1b0 /pfinet/linux/time.h | |
parent | 1e53886378dbb4ac7a83c1d1ce78833500ec6b62 (diff) | |
download | hurd-157a341929576a1867e15ba7d270e1e3cbe3c4a8.tar.gz hurd-157a341929576a1867e15ba7d270e1e3cbe3c4a8.tar.bz2 hurd-157a341929576a1867e15ba7d270e1e3cbe3c4a8.zip |
2000-01-27 Roland McGrath <roland@baalperazim.frob.com>
* mapped-time.h: Include <maptime.h>.
(fill_timeval): Function removed.
(fetch_jiffies): Use maptime_read.
* timer-emul.c (init_time): Use maptime_map and maptime_read.
* linux/sched.h (fetch_xtime): Use maptime_read.
* linux/time.h (do_gettimeofday): Likewise.
Diffstat (limited to 'pfinet/linux/time.h')
-rw-r--r-- | pfinet/linux/time.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pfinet/linux/time.h b/pfinet/linux/time.h index 9b6b9904..50e13783 100644 --- a/pfinet/linux/time.h +++ b/pfinet/linux/time.h @@ -4,10 +4,10 @@ #include <sys/time.h> #include "mapped-time.h" -extern inline void +extern inline void do_gettimeofday (struct timeval *tp) { - fill_timeval (tp); + maptime_read (mapped_time, &_xtime_buf); } #endif |