From b6e399cc65f3c020f584654e00cf9a8cb20012d6 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 12 Feb 2015 11:17:23 -0600 Subject: [PATCH] Update ChangeLog --- ChangeLog | 7 +++++++ libc/time/lib_settimeofday.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c337f7977b..9e5ad32f42 100755 --- a/ChangeLog +++ b/ChangeLog @@ -9758,3 +9758,10 @@ Frank Sautter (2015-02-11). * configs/tm4c1294-launchpad: Add support for the TM4C1294 Launchpad. Contributed by Frank Sautter (2015-02-11). + * gettimeofday(): Move gettimeofdady() from sched/clock to libc/time. + Remove gettimeofday() from NuttX system calls. It is only a wrapper + around clock_settime() and does not need a trap. gettimeofday() is + no longer treated as a core OS interface (2015-02-12). + * settimeofday(): gettimeofday has been decrecated in POSIX 2008. + settimeofday() was never part of POSIX, but I decided to add it to + libc as well just for symmetry (2015-02-12). diff --git a/libc/time/lib_settimeofday.c b/libc/time/lib_settimeofday.c index bef088c38d..459f6d083a 100644 --- a/libc/time/lib_settimeofday.c +++ b/libc/time/lib_settimeofday.c @@ -85,7 +85,7 @@ int settimeofday(FAR const struct timeval *tv, FAR struct timezone *tz) ts.tv_sec = tv->tv_sec; ts.tv_nsec = tv->tv_usec * NSEC_PER_USEC; - + /* Let clock_settime do the work */ return clock_settime(CLOCK_REALTIME, &ts);