__m68k_get_time_base instead of __m68k_time_base

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23649 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2008-01-19 19:27:35 +00:00
parent 850456ed43
commit 9ce320179c
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ __m68k_setup_system_time(vint32 *cvFactor)
bigtime_t
system_time(void)
{
uint64 timeBase = __m68k_time_base();
uint64 timeBase = __m68k_get_time_base();
uint32 cv = *sConversionFactor;
return (timeBase >> 32) * cv + (((timeBase & 0xffffffff) * cv) >> 32);