2019-01-01 00:11:28 +00:00
|
|
|
/* Copyright (C) 1994-2019 Free Software Foundation, Inc.
|
1997-05-26 23:01:17 +00:00
|
|
|
This file is part of the GNU C Library.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1997-05-26 23:01:17 +00:00
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
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.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1997-05-26 23:01:17 +00:00
|
|
|
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
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
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
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <hurd.h>
|
|
|
|
|
|
|
|
/* XXX Temporary cheezoid implementation; see __setitmr.c. */
|
|
|
|
|
|
|
|
/* These are defined in __setitmr.c. */
|
|
|
|
extern spin_lock_t _hurd_itimer_lock;
|
|
|
|
extern struct itimerval _hurd_itimerval;
|
|
|
|
extern struct timeval _hurd_itimer_started;
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
subtract_timeval (struct timeval *from, const struct timeval *subtract)
|
|
|
|
{
|
|
|
|
from->tv_usec -= subtract->tv_usec;
|
|
|
|
from->tv_sec -= subtract->tv_sec;
|
|
|
|
while (from->tv_usec < 0)
|
|
|
|
{
|
|
|
|
--from->tv_sec;
|
|
|
|
from->tv_usec += 1000000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set *VALUE to the current setting of timer WHICH.
|
|
|
|
Return 0 on success, -1 on errors. */
|
|
|
|
int
|
2015-10-19 12:04:33 +00:00
|
|
|
__getitimer (enum __itimer_which which, struct itimerval *value)
|
1995-02-18 01:27:10 +00:00
|
|
|
{
|
|
|
|
struct itimerval val;
|
|
|
|
struct timeval elapsed;
|
|
|
|
|
|
|
|
switch (which)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
return __hurd_fail (EINVAL);
|
|
|
|
|
|
|
|
case ITIMER_VIRTUAL:
|
|
|
|
case ITIMER_PROF:
|
|
|
|
return __hurd_fail (ENOSYS);
|
|
|
|
|
|
|
|
case ITIMER_REAL:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the time now. */
|
|
|
|
if (__gettimeofday (&elapsed, NULL) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Extract the current timer setting; and the time it was set, so we can
|
|
|
|
calculate the time elapsed so far. */
|
|
|
|
HURD_CRITICAL_BEGIN;
|
|
|
|
__spin_lock (&_hurd_itimer_lock);
|
|
|
|
val = _hurd_itimerval;
|
|
|
|
subtract_timeval (&elapsed, &_hurd_itimer_started);
|
|
|
|
__spin_unlock (&_hurd_itimer_lock);
|
|
|
|
HURD_CRITICAL_END;
|
|
|
|
|
|
|
|
if ((val.it_value.tv_sec | val.it_value.tv_usec) != 0)
|
|
|
|
{
|
|
|
|
/* There is a pending alarm set. VAL indicates the interval it was
|
|
|
|
set for, relative to the time recorded in _hurd_itimer_started.
|
|
|
|
Now compensate for the time elapsed since to get the user's
|
|
|
|
conception of the current value of the timer (as if the value
|
|
|
|
stored decreased every microsecond). */
|
|
|
|
if (timercmp (&val.it_value, &elapsed, <))
|
|
|
|
{
|
|
|
|
/* Hmm. The timer should have just gone off, but has not been
|
|
|
|
reset. This is a possible timing glitch. The alarm will signal
|
|
|
|
soon, so fabricate a value for how soon. */
|
|
|
|
val.it_value.tv_sec = 0;
|
|
|
|
val.it_value.tv_usec = 10; /* Random. */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* Subtract the time elapsed since the timer was set
|
|
|
|
from the current timer value the user sees. */
|
|
|
|
subtract_timeval (&val.it_value, &elapsed);
|
|
|
|
}
|
|
|
|
|
|
|
|
*value = val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
weak_alias (__getitimer, getitimer)
|