summaryrefslogtreecommitdiff
path: root/TAO/tests/Nested_Upcall_Crash/Clock_Ticks.h
blob: 98e700da93b979ae512d38b6ee86b702bf52595e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef Clock_Ticks__h_
#define Clock_Ticks__h_
/**
 * @file Clock_Ticks.h
 *
 * $Id$
 *
 * @author Carlos O'Ryan <coryan@atdesk.com>
 *
 */

#include "ace/OS.h"

namespace Clock_Ticks
{
  /// Return the number of clock ticks per second
  int get_hz (void);

  /// Return the number of microseconds per tick
  int get_usecs_per_tick (void);
}

#endif /* Clock_Ticks__h_ */