diff options
author | Christopher Faylor <me@cgf.cx> | 2002-02-15 17:06:40 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-02-15 17:06:40 +0000 |
commit | 60b68f0d39b92f329c4156a41866341d982831cb (patch) | |
tree | 69f77510cf9598ac24985d35427cc5457dcebe8d /winsup/cygwin/hires.h | |
parent | dce87b21e14f3a59d666cfe0a64261703c35d986 (diff) | |
download | cygnal-60b68f0d39b92f329c4156a41866341d982831cb.tar.gz cygnal-60b68f0d39b92f329c4156a41866341d982831cb.tar.bz2 cygnal-60b68f0d39b92f329c4156a41866341d982831cb.zip |
* hires.h (hires::usecs): Rename from utime. Accept an argument.
* strace.cc (strace::microseconds): Use hires class for calculating times.
* sync.h (new_muto): Use NO_COPY explicitly in declaration.
* times.cc (gettimeofday): Reflect change in usecs argument.
(hires::usecs): Ditto. Changed name from utime.
* winsup.h (NO_COPY): Add nocommon attribute to force setting aside space for
variable.
* regcomp.c (REQUIRE): Add a void cast to bypass a warning.
Diffstat (limited to 'winsup/cygwin/hires.h')
-rw-r--r-- | winsup/cygwin/hires.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/hires.h b/winsup/cygwin/hires.h index 06a00166d..c341aa287 100644 --- a/winsup/cygwin/hires.h +++ b/winsup/cygwin/hires.h @@ -17,8 +17,8 @@ class hires LARGE_INTEGER primed_ft; LARGE_INTEGER primed_pc; double freq; - void prime (); + void prime () __attribute__ ((regparm (1))); public: - LONGLONG utime (); + LONGLONG usecs (bool justdelta) __attribute__ ((regparm (2))); }; #endif /*__HIRES_H__*/ |