Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hires.h « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c341aa2872ac13b9f28b125c18744596256a9950 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* 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__*/