[NTOSKRNL]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Thu, 15 Jul 2010 00:07:31 +0000 (00:07 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Thu, 15 Jul 2010 00:07:31 +0000 (00:07 +0000)
KeQuerySystemTime and KeQueryInterruptTime are not implemenetd on amd64

svn path=/trunk/; revision=48056

reactos/ntoskrnl/ke/clock.c

index 9d75215..a60eabf 100644 (file)
@@ -175,6 +175,7 @@ KeQueryTickCount(IN PLARGE_INTEGER TickCount)
     }
 }
 
+#ifndef _M_AMD64
 /*
  * @implemented
  */
@@ -217,6 +218,7 @@ KeQueryInterruptTime(VOID)
     /* Return the time value */
     return CurrentTime.QuadPart;
 }
+#endif
 
 /*
  * @implemented