summaryrefslogtreecommitdiff
path: root/nmglobal.h
diff options
context:
space:
mode:
Diffstat (limited to 'nmglobal.h')
-rw-r--r--nmglobal.h72
1 files changed, 0 insertions, 72 deletions
diff --git a/nmglobal.h b/nmglobal.h
index 2f1018d..90fcf63 100644
--- a/nmglobal.h
+++ b/nmglobal.h
@@ -35,84 +35,12 @@
#define MINIMUM_TICKS 60
#define MINIMUM_SECONDS 5 /* Minimum number of seconds to run each test */
-/*****************
-** NUMERIC SORT **
-*****************/
-/*
-** DEFINES
-*/
-
-/*
-** The following constant, NUMNUMARRAYS (no, it is not a
-** Peter Sellers joke) is the maximum number of arrays
-** that can be built by the numeric sorting benchmark
-** before it gives up. This maximum is dependent on the
-** amount of memory in the system.
-*/
-/*#define NUMNUMARRAYS 1000*/
-#define NUMNUMARRAYS 10000
-
-/*
-** The following constant NUMARRAYSIZE determines the
-** default # of elements in each numeric array. Ordinarily
-** this is something you shouldn't fool with, though as
-** with most of the constants here, it is adjustable.
-*/
-#define NUMARRAYSIZE 8111L
-
-
-/*
-** TYPEDEFS
-*/
typedef struct {
double results; /* # of sort iterations per sec */
- unsigned long arraysize; /* # of elements in array */
} SortStruct;
-/****************
-** STRING SORT **
-*****************
-** Note: The string sort benchmark uses the same structure to
-** communicate parameters as does the numeric sort benchmark.
-** (i.e., SortStruct...see above.
-*/
-
-/*
-** DEFINES
-*/
-/*
-** The following constant STRINGARRAYSIZE determines
-** the default # of bytes allocated to each string array.
-** Though the actual size can be pre-set from the command
-** file, this constant should be left unchanged.
-*/
-#define STRINGARRAYSIZE 8111L
-
-/************************
-** BITFIELD OPERATIONS **
-*************************
-*/
-
-/*
-** DEFINES
-*/
-
-/*
-** Following field sets the size of the bitfield array (in longs).
-*/
-#ifdef _LP64
-#define BITFARRAYSIZE 16384L
-#else
-#define BITFARRAYSIZE 32768L
-#endif
-
-/*
-** TYPEDEFS
-*/
typedef struct {
double results; /* # of bitfield ops per sec */
- unsigned long bitoparraysize; /* Total # of bitfield ops */
- unsigned long bitfieldarraysize; /* Bit field array size */
} BitOpStruct;
/****************************