am 10675a79: am 55f9710a: Merge "Reimplement clock(3) and switch to OpenBSD time(3)."

* commit '10675a794d02497f530f9086b6edf61b5cdb447c':
  Reimplement clock(3) and switch to OpenBSD time(3).
This commit is contained in:
Elliott Hughes 2014-03-12 19:56:47 +00:00 committed by Android Git Automerger
commit 7517235f9d
4 changed files with 48 additions and 37 deletions

View File

@ -96,7 +96,6 @@ libc_common_src_files := \
stdlib/setenv.c \ stdlib/setenv.c \
stdlib/strtod.c \ stdlib/strtod.c \
unistd/syslog.c \ unistd/syslog.c \
unistd/time.c \
# Fortify implementations of libc functions. # Fortify implementations of libc functions.
libc_common_src_files += \ libc_common_src_files += \
@ -125,6 +124,7 @@ libc_bionic_src_files := \
bionic/brk.cpp \ bionic/brk.cpp \
bionic/chmod.cpp \ bionic/chmod.cpp \
bionic/chown.cpp \ bionic/chown.cpp \
bionic/clock.cpp \
bionic/clone.cpp \ bionic/clone.cpp \
bionic/dirent.cpp \ bionic/dirent.cpp \
bionic/dup2.cpp \ bionic/dup2.cpp \
@ -319,6 +319,7 @@ libc_upstream_openbsd_src_files := \
upstream-openbsd/lib/libc/gen/ftok.c \ upstream-openbsd/lib/libc/gen/ftok.c \
upstream-openbsd/lib/libc/gen/getprogname.c \ upstream-openbsd/lib/libc/gen/getprogname.c \
upstream-openbsd/lib/libc/gen/setprogname.c \ upstream-openbsd/lib/libc/gen/setprogname.c \
upstream-openbsd/lib/libc/gen/time.c \
upstream-openbsd/lib/libc/gen/tolower_.c \ upstream-openbsd/lib/libc/gen/tolower_.c \
upstream-openbsd/lib/libc/gen/toupper_.c \ upstream-openbsd/lib/libc/gen/toupper_.c \
upstream-openbsd/lib/libc/locale/wcscoll.c \ upstream-openbsd/lib/libc/locale/wcscoll.c \

38
libc/bionic/clock.cpp Normal file
View File

@ -0,0 +1,38 @@
/*
* Copyright (C) 2014 The Android Open Source Project
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <time.h>
#include <sys/sysconf.h>
#include <sys/times.h>
// http://pubs.opengroup.org/onlinepubs/9699919799/functions/clock.html
clock_t clock() {
tms t;
times(&t);
return (t.tms_utime + t.tms_stime) * (CLOCKS_PER_SEC / sysconf(_SC_CLK_TCK));
}

View File

@ -25,6 +25,7 @@
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#ifndef _SYS_TIMES_H_ #ifndef _SYS_TIMES_H_
#define _SYS_TIMES_H_ #define _SYS_TIMES_H_
@ -34,7 +35,7 @@
__BEGIN_DECLS __BEGIN_DECLS
extern clock_t times(struct tms *); extern clock_t times(struct tms*);
__END_DECLS __END_DECLS

View File

@ -28,46 +28,17 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <time.h> #include <sys/types.h>
#include <sys/time.h>
time_t time_t
time(time_t *t) time(time_t *t)
{ {
struct timeval tt; struct timeval tt;
time_t ret;
if (gettimeofday(&tt, (struct timezone *)0) < 0) if (gettimeofday(&tt, (struct timezone *)0) < 0)
ret = -1; return (-1);
else if (t)
ret = tt.tv_sec; *t = (time_t)tt.tv_sec;
if (t != NULL) return (tt.tv_sec);
*t = ret;
return ret;
}
// return monotonically increasing CPU time in ticks relative to unspecified epoch
static inline clock_t clock_now(void)
{
struct timespec tm;
clock_gettime( CLOCK_MONOTONIC, &tm);
return tm.tv_sec * CLOCKS_PER_SEC + (tm.tv_nsec * (CLOCKS_PER_SEC/1e9));
}
// initialized by the constructor below
static clock_t clock_start;
// called by dlopen when .so is loaded
__attribute__((constructor)) static void clock_crt0(void)
{
clock_start = clock_now();
}
// return elapsed CPU time in clock ticks, since start of program execution
// (spec says epoch is undefined, but glibc uses crt0 as epoch)
clock_t
clock(void)
{
// note that if we are executing in a different thread than crt0, then the
// pthread_create that made us had a memory barrier so clock_start is defined
return clock_now() - clock_start;
} }