2001-02-24 20:28:24 +00:00
|
|
|
// Precise timer routines for LINUX (C) LGB & A'rpi/ASTRAL
|
|
|
|
|
|
|
|
#include <unistd.h>
|
2004-10-11 19:26:13 +00:00
|
|
|
#ifdef __BEOS__
|
|
|
|
#define usleep(t) snooze(t)
|
|
|
|
#endif
|
2002-03-24 00:58:27 +00:00
|
|
|
#include <stdlib.h>
|
2001-10-25 23:34:14 +00:00
|
|
|
#include <time.h>
|
2001-02-24 20:28:24 +00:00
|
|
|
#include <sys/time.h>
|
2005-11-14 00:30:37 +00:00
|
|
|
#include "config.h"
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2008-04-28 08:25:49 +00:00
|
|
|
const char timer_name[] =
|
2004-08-04 15:48:43 +00:00
|
|
|
#ifdef HAVE_NANOSLEEP
|
|
|
|
"nanosleep()";
|
|
|
|
#else
|
|
|
|
"usleep()";
|
|
|
|
#endif
|
|
|
|
|
2001-10-19 02:16:21 +00:00
|
|
|
int usec_sleep(int usec_delay)
|
|
|
|
{
|
2001-11-23 18:25:32 +00:00
|
|
|
#ifdef HAVE_NANOSLEEP
|
2001-10-19 02:16:21 +00:00
|
|
|
struct timespec ts;
|
|
|
|
ts.tv_sec = usec_delay / 1000000;
|
|
|
|
ts.tv_nsec = (usec_delay % 1000000) * 1000;
|
|
|
|
return nanosleep(&ts, NULL);
|
|
|
|
#else
|
|
|
|
return usleep(usec_delay);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2001-03-13 00:13:18 +00:00
|
|
|
// Returns current time in microseconds
|
2006-02-09 14:08:03 +00:00
|
|
|
unsigned int GetTimer(void){
|
2001-02-24 20:28:24 +00:00
|
|
|
struct timeval tv;
|
2006-05-13 05:56:40 +00:00
|
|
|
gettimeofday(&tv,NULL);
|
2001-02-24 20:28:24 +00:00
|
|
|
return (tv.tv_sec*1000000+tv.tv_usec);
|
|
|
|
}
|
|
|
|
|
2002-01-27 17:59:12 +00:00
|
|
|
// Returns current time in milliseconds
|
2006-02-09 14:08:03 +00:00
|
|
|
unsigned int GetTimerMS(void){
|
2002-01-27 17:59:12 +00:00
|
|
|
struct timeval tv;
|
2006-05-13 05:56:40 +00:00
|
|
|
gettimeofday(&tv,NULL);
|
2002-01-27 17:59:12 +00:00
|
|
|
return (tv.tv_sec*1000+tv.tv_usec/1000);
|
|
|
|
}
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
// Initialize timer, must be called at least once at start
|
2006-02-09 14:08:03 +00:00
|
|
|
void InitTimer(void){
|
2001-02-24 20:28:24 +00:00
|
|
|
}
|