2004-01-29 01:02:12 +00:00
|
|
|
/*
|
|
|
|
** Timing functions.
|
|
|
|
**
|
|
|
|
** This program is distributed under the GNU General Public License, version 2.
|
|
|
|
** A copy of this license is included with this source.
|
|
|
|
*/
|
|
|
|
|
2001-09-10 02:24:39 +00:00
|
|
|
#ifndef __TIMING_H__
|
|
|
|
#define __TIMING_H__
|
|
|
|
|
2001-10-20 21:28:09 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAVE_STDINT_H
|
2002-02-07 01:04:09 +00:00
|
|
|
#include <stdint.h>
|
2001-10-20 21:28:09 +00:00
|
|
|
#endif
|
2002-02-07 01:04:09 +00:00
|
|
|
|
2007-03-06 13:35:29 +00:00
|
|
|
#if defined(_WIN32) && !defined(int64_t)
|
2002-02-07 01:04:09 +00:00
|
|
|
typedef __int64 int64_t;
|
|
|
|
typedef unsigned __int64 uint64_t;
|
2001-10-20 21:28:09 +00:00
|
|
|
#endif
|
2001-10-20 05:03:24 +00:00
|
|
|
|
2003-07-04 23:18:26 +00:00
|
|
|
/* config.h should be included before we are to define _mangle */
|
|
|
|
#ifdef _mangle
|
|
|
|
# define timing_get_time _mangle(timing_get_time)
|
|
|
|
# define timing_sleep _mangle(timing_sleep)
|
|
|
|
#endif
|
|
|
|
|
2001-10-20 05:03:24 +00:00
|
|
|
uint64_t timing_get_time(void);
|
|
|
|
void timing_sleep(uint64_t sleeptime);
|
2001-09-10 02:24:39 +00:00
|
|
|
|
|
|
|
#endif /* __TIMING_H__ */
|