60b68f0d39
* 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.
25 lines
545 B
C++
25 lines
545 B
C++
/* hires.h: Definitions for hires clock calculations
|
|
|
|
Copyright 2002 Red Hat, Inc.
|
|
|
|
This file is part of Cygwin.
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
details. */
|
|
|
|
#ifndef __HIRES_H__
|
|
#define __HIRES_H__
|
|
|
|
class hires
|
|
{
|
|
int inited;
|
|
LARGE_INTEGER primed_ft;
|
|
LARGE_INTEGER primed_pc;
|
|
double freq;
|
|
void prime () __attribute__ ((regparm (1)));
|
|
public:
|
|
LONGLONG usecs (bool justdelta) __attribute__ ((regparm (2)));
|
|
};
|
|
#endif /*__HIRES_H__*/
|