FTK change. Enabled use of fast checkum routines on all x86 platforms when building with gcc.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@757 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-08-09 20:36:41 +00:00
parent 9e08e127e8
commit 2e508596bc
3 changed files with 12 additions and 12 deletions

View File

@@ -468,7 +468,7 @@ FSTATIC RCODE ftkFastChecksumTest( void)
}
}
f_printf( "Slow time = %u ms, FastTime = %u ms. ",
f_printf( "Slow time = %u ms, Fast time = %u ms. ",
(unsigned)FLM_TIMER_UNITS_TO_MILLI( uiSlowTime),
(unsigned)FLM_TIMER_UNITS_TO_MILLI( uiFastTime));
@@ -503,7 +503,7 @@ FSTATIC RCODE ftkPacketChecksumTest( void)
f_printf( "Running checksum tests ... ");
uiDataLength = 8192;
uiDataLength = 64 * 1024;
if( RC_BAD( rc = f_alloc( uiDataLength, &pucData)))
{
goto Exit;
@@ -537,7 +537,7 @@ FSTATIC RCODE ftkPacketChecksumTest( void)
}
}
f_printf( "Slow time = %u ms, FastTime = %u ms. ",
f_printf( "Slow time = %u ms, Fast time = %u ms. ",
(unsigned)FLM_TIMER_UNITS_TO_MILLI( uiSlowTime),
(unsigned)FLM_TIMER_UNITS_TO_MILLI( uiFastTime));