summaryrefslogtreecommitdiff
path: root/src/porting.h
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-02-11 22:34:34 +0200
committerPerttu Ahola <celeron55@gmail.com>2011-02-11 22:34:34 +0200
commitcabe6f1d65a84a6f047553eb5d859f407bff6a70 (patch)
treeb70aaf5b3937dea408aea5c7481c90481eefbe03 /src/porting.h
parentdad2455a032d6b3911cd650429f9c0c4c1642cc0 (diff)
downloadminetest-cabe6f1d65a84a6f047553eb5d859f407bff6a70.tar.gz
minetest-cabe6f1d65a84a6f047553eb5d859f407bff6a70.tar.bz2
minetest-cabe6f1d65a84a6f047553eb5d859f407bff6a70.zip
some fixes to make compiling on some bsd easier
Diffstat (limited to 'src/porting.h')
-rw-r--r--src/porting.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/porting.h b/src/porting.h
index 441a57d77..3133fcc80 100644
--- a/src/porting.h
+++ b/src/porting.h
@@ -86,13 +86,20 @@ void initializePaths();
return GetTickCount();
}
#else // Posix
- #include <sys/timeb.h>
+ #include <sys/time.h>
+ inline u32 getTimeMs()
+ {
+ struct timeval tv;
+ gettimeofday(&tv, NULL);
+ return tv.tv_sec * 1000 + tv.tv_usec / 1000;
+ }
+ /*#include <sys/timeb.h>
inline u32 getTimeMs()
{
struct timeb tb;
ftime(&tb);
return tb.time * 1000 + tb.millitm;
- }
+ }*/
#endif
} // namespace porting