diff options
Diffstat (limited to 'cleanbench.c')
-rw-r--r-- | cleanbench.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/cleanbench.c b/cleanbench.c index b4f8ef2..2d8ed12 100644 --- a/cleanbench.c +++ b/cleanbench.c @@ -66,12 +66,6 @@ unsigned long bnumrun; /* # of runs */ int i; /* Index */ /* -** Set global parameters to default. -*/ -global_min_ticks=MINIMUM_TICKS; -global_min_seconds=MINIMUM_SECONDS; - -/* ** We presume all tests will be run unless told ** otherwise */ @@ -83,7 +77,6 @@ for (i = 0; i < NUMTESTS; i++) { ** Initialize test data structures to default ** values. */ -set_request_secs(); /* Set all request_secs fields */ global_numsortstruct.adjust=0; global_numsortstruct.arraysize=NUMARRAYSIZE; @@ -174,29 +167,6 @@ puts("* Trademarks are property of their respective holder."); return 0; } -/********************* -** set_request_secs ** -********************** -** Set everyone's "request_secs" entry to whatever -** value is in global_min_secs. This is done -** at the beginning, and possibly later if the -** user redefines global_min_secs in the command file. -*/ -static void set_request_secs(void) -{ -global_numsortstruct.request_secs=global_min_seconds; -global_strsortstruct.request_secs=global_min_seconds; -global_bitopstruct.request_secs=global_min_seconds; -global_emfloatstruct.request_secs=global_min_seconds; -global_fourierstruct.request_secs=global_min_seconds; -global_assignstruct.request_secs=global_min_seconds; -global_ideastruct.request_secs=global_min_seconds; -global_huffstruct.request_secs=global_min_seconds; -global_nnetstruct.request_secs=global_min_seconds; -global_lustruct.request_secs=global_min_seconds; -} - - /************************** ** bench_with_confidence ** *************************** |