summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/hires.h
Commit message (Collapse)AuthorAgeFilesLines
* * autoload.cc (timeGetDevCaps): Define new autoload function.Christopher Faylor2002-06-071-3/+26
| | | | | | | | | | | | | | | | (timeGetTime): Ditto. (timeBeginPeriod): Ditto. (timeEndPeriod): Ditto. * hires.h (hires_base): New class. Renamed from hires. (hires_us): New class. (hires_ms): New class. * strace.cc (strace::microseconds): Use hires_us class. * times.cc (gettimeofday): Use hires-ms class. (hires_us::prime): Renamed from hires::prime. (hires_us::usecs): Renamed from hires:usecs. (hires_ms::prime): New method. (hires_ms::usecs): New method. (hires_ms::~hires_ms): New destructor.
* * hires.h (hires::usecs): Rename from utime. Accept an argument.Christopher Faylor2002-02-151-2/+2
| | | | | | | | | | * 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.
* * hires.h: New file.Christopher Faylor2002-02-151-0/+24
* times.cc (gettimeofday): Use hires class for calculating current time. (hires::prime): New method. (hires::utime): Ditto.