summaryrefslogtreecommitdiffstats
path: root/lib/libc/include
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2012-06-22 07:13:30 +0000
committerkib <kib@FreeBSD.org>2012-06-22 07:13:30 +0000
commit13a9f42818f6b89a72b3e40923be809b490400d8 (patch)
tree58a73d4c3dd528ab72afbea3d6243d4dd6c48c3e /lib/libc/include
parent7b36a081088572ce45af9b675b5992adc971506d (diff)
downloadFreeBSD-src-13a9f42818f6b89a72b3e40923be809b490400d8.zip
FreeBSD-src-13a9f42818f6b89a72b3e40923be809b490400d8.tar.gz
Use struct vdso_timehands data to implement fast gettimeofday(2) and
clock_gettime(2) functions if supported. The speedup seen in microbenchmarks is in range 4x-7x depending on the hardware. Only amd64 and i386 architectures are supported. Libc uses rdtsc and kernel data to calculate current time, if enabled by kernel. Hopefully, this code is going to migrate into vdso in some future. Discussed with: bde Reviewed by: jhb Tested by: flo MFC after: 1 month
Diffstat (limited to 'lib/libc/include')
-rw-r--r--lib/libc/include/libc_private.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/libc/include/libc_private.h b/lib/libc/include/libc_private.h
index 2182f46..faae028 100644
--- a/lib/libc/include/libc_private.h
+++ b/lib/libc/include/libc_private.h
@@ -34,6 +34,7 @@
#ifndef _LIBC_PRIVATE_H_
#define _LIBC_PRIVATE_H_
+#include <sys/_types.h>
#include <sys/_pthreadtypes.h>
/*
@@ -245,6 +246,12 @@ extern void * __sys_freebsd6_mmap(void *, __size_t, int, int, int, int, __off_t)
/* Without back-compat translation */
extern int __sys_fcntl(int, int, ...);
+struct timespec;
+struct timeval;
+struct timezone;
+int __sys_gettimeofday(struct timeval *, struct timezone *);
+int __sys_clock_gettime(__clockid_t, struct timespec *ts);
+
/* execve() with PATH processing to implement posix_spawnp() */
int _execvpe(const char *, char * const *, char * const *);
OpenPOWER on IntegriCloud