mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-27 03:41:23 +08:00
Update.
1999-03-02 Ulrich Drepper <drepper@cygnus.com> * manual/time.texi (High Resolution Timer): Correct computation in example. Reported by jjf@devel.cemsys.com.
This commit is contained in:
parent
d77fad15db
commit
9af2e76f29
@ -1,3 +1,8 @@
|
||||
1999-03-02 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* manual/time.texi (High Resolution Timer): Correct computation in
|
||||
example. Reported by jjf@devel.cemsys.com.
|
||||
|
||||
1999-03-02 Philip Blundell <pb@nexus.co.uk>
|
||||
|
||||
* sysdeps/arm/dl-machine.h (elf_machine_runtime_setup): DT_PLTGOT
|
||||
|
@ -354,7 +354,7 @@ timeval_subtract (result, x, y)
|
||||
y->tv_sec += nsec;
|
||||
@}
|
||||
if (x->tv_usec - y->tv_usec > 1000000) @{
|
||||
int nsec = (y->tv_usec - x->tv_usec) / 1000000;
|
||||
int nsec = (x->tv_usec - y->tv_usec) / 1000000;
|
||||
y->tv_usec += 1000000 * nsec;
|
||||
y->tv_sec -= nsec;
|
||||
@}
|
||||
|
Loading…
Reference in New Issue
Block a user