From 66428e7f5a40e36d0129200dcc53e9459e1d0a9b Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Sun, 16 Nov 2008 01:39:11 +0000 Subject: -- Remove getScore functions -- Replace by making Do* functions return the results directly git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@61 0d43b9a7-5ab2-4d7b-af9d-f64450cef757 --- numsort.c | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'numsort.c') diff --git a/numsort.c b/numsort.c index 46eb432..8f94c00 100644 --- a/numsort.c +++ b/numsort.c @@ -29,15 +29,13 @@ static void LoadNumArrayWithRand(long *array, unsigned int num_arrays); static inline void NumHeapSort(long *array, unsigned long bottom, unsigned long top); static inline void NumSift(long *array, unsigned long min, unsigned long max); -static double results; - /************** ** DoNumSort ** *************** ** This routine performs the CPU numeric sort test. */ -void +double DoNumSort (void) { const char* context = "CPU:Numeric Sort"; @@ -95,7 +93,7 @@ DoNumSort (void) free(array); - results = (double)(iterations * num_arrays * CLOCKS_PER_SEC) / (double)total_time; + return (double)(iterations * num_arrays * CLOCKS_PER_SEC) / (double)total_time; } /*********************** @@ -221,9 +219,3 @@ NumSift(long *array, unsigned long min, unsigned long max) } } } - -double -getNumSortScore(void) -{ - return results; -} -- cgit v1.2.3