Remove debug breakpoint

svn path=/trunk/; revision=4931
This commit is contained in:
Gé van Geldorp 2003-06-20 10:37:23 +00:00
parent 3f1690fdbd
commit 7704a6609a

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
/* $Id: perfcnt.c,v 1.1 2003/06/19 17:13:28 gvg Exp $ /* $Id: perfcnt.c,v 1.2 2003/06/20 10:37:23 gvg Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -36,7 +36,6 @@ EngQueryPerformanceFrequency(LONGLONG *Frequency)
{ {
LARGE_INTEGER Freq; LARGE_INTEGER Freq;
__asm__("int $3\n");
KeQueryPerformanceCounter(&Freq); KeQueryPerformanceCounter(&Freq);
*Frequency = Freq.QuadPart; *Frequency = Freq.QuadPart;
} }