From 2f8b825e21566947c429913622dfa934476e3913 Mon Sep 17 00:00:00 2001 From: ultramage Date: Fri, 14 Dec 2007 10:52:51 +0000 Subject: Added a precise and consistent tick() function for freebsd (see bugreport:240) (TODO: apply it to multiple platforms using an appropriate configure script) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11912 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/common/timer.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/common/timer.c') diff --git a/src/common/timer.c b/src/common/timer.c index 5f1f17e2f..c66fd5960 100644 --- a/src/common/timer.c +++ b/src/common/timer.c @@ -91,8 +91,12 @@ char* search_timer_func_list(TimerFunc func) /// platform-abstracted tick retrieval static unsigned int tick(void) { -#ifdef WIN32 +#if defined(WIN32) return GetTickCount(); +#elif defined(__FREEBSD__) + struct timespec tval; + clock_gettime(CLOCK_MONOTONIC, &tval); + return tval.tv_sec * 1000 + tval.tv_nsec / 1000000; #else struct timeval tval; gettimeofday(&tval, NULL); -- cgit v1.2.3-60-g2f50