2012-02-17 16:46:56 +00:00
|
|
|
/* Copyright (C) 2003, 2004, 2006, 2010, 2012 Free Software Foundation, Inc.
|
2003-03-03 04:57:09 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2003-03-03 04:57:09 +00:00
|
|
|
|
2006-08-13 08:21:10 +00:00
|
|
|
#include <errno.h>
|
2003-03-03 04:57:09 +00:00
|
|
|
#include <sysdep.h>
|
2012-02-17 16:46:56 +00:00
|
|
|
#include <time.h>
|
2003-03-03 04:57:09 +00:00
|
|
|
|
2006-08-13 08:21:10 +00:00
|
|
|
#include "kernel-posix-cpu-timers.h"
|
2006-01-08 08:21:40 +00:00
|
|
|
#include <kernel-features.h>
|
2003-03-03 04:57:09 +00:00
|
|
|
|
2006-08-15 13:41:04 +00:00
|
|
|
#ifndef HAVE_CLOCK_GETRES_VSYSCALL
|
2006-08-13 08:21:10 +00:00
|
|
|
# undef INTERNAL_VSYSCALL
|
|
|
|
# define INTERNAL_VSYSCALL INTERNAL_SYSCALL
|
|
|
|
# undef INLINE_VSYSCALL
|
|
|
|
# define INLINE_VSYSCALL INLINE_SYSCALL
|
|
|
|
#else
|
|
|
|
# include <bits/libc-vdso.h>
|
|
|
|
#endif
|
|
|
|
|
2003-03-03 04:57:09 +00:00
|
|
|
|
2012-08-16 14:03:43 +00:00
|
|
|
/* The REALTIME clock is definitely supported in the kernel. */
|
|
|
|
#define SYSDEP_SETTIME \
|
2003-03-03 04:57:09 +00:00
|
|
|
case CLOCK_REALTIME: \
|
|
|
|
retval = INLINE_SYSCALL (clock_settime, 2, clock_id, tp); \
|
|
|
|
break
|
|
|
|
|
|
|
|
/* We handled the REALTIME clock here. */
|
2012-09-01 21:32:04 +00:00
|
|
|
#define HANDLED_REALTIME 1
|
2003-03-03 04:57:09 +00:00
|
|
|
|
2012-09-01 21:32:04 +00:00
|
|
|
#define HANDLED_CPUTIME 1
|
|
|
|
#define SYSDEP_SETTIME_CPU \
|
2006-08-13 08:21:10 +00:00
|
|
|
retval = INLINE_SYSCALL (clock_settime, 2, clock_id, tp)
|
|
|
|
|
2003-03-03 04:57:09 +00:00
|
|
|
#include <sysdeps/unix/clock_settime.c>
|