summaryrefslogtreecommitdiffstats
path: root/testsuites/tmitrontests/include/timesys.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-06-17 16:03:51 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-06-17 16:03:51 +0000
commit62812daba81dfec31cd3c49eb109121eb3d63e38 (patch)
tree75fc2c753130130eabc91a2eb3cc84fd335a34dd /testsuites/tmitrontests/include/timesys.h
parent2010-06-17 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-62812daba81dfec31cd3c49eb109121eb3d63e38.tar.bz2
Remove (Abandoned)
Diffstat (limited to 'testsuites/tmitrontests/include/timesys.h')
-rw-r--r--testsuites/tmitrontests/include/timesys.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/testsuites/tmitrontests/include/timesys.h b/testsuites/tmitrontests/include/timesys.h
deleted file mode 100644
index 3c7cbdd64f..0000000000
--- a/testsuites/tmitrontests/include/timesys.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/* timesys.h
- *
- * This header file contains the global variables for the Time
- * suite.
- *
- * COPYRIGHT (c) 1989-1999.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <tmacros.h>
-
-/*
- * How many times a particular operation is performed while timed.
- */
-
-#ifndef OPERATION_COUNT
-#define OPERATION_COUNT 100
-#endif
-
-/* functions */
-
-#define put_time( _message, _total_time, \
- _iterations, _loop_overhead, _overhead ) \
- printf( \
- "%s %" PRId32 "\n", \
- (_message), \
- (((_total_time) - (_loop_overhead)) / (_iterations)) - (_overhead) \
- )
-
-#if defined(CONFIGURE_STACK_CHECKER_ENABLED) || defined(RTEMS_DEBUG)
-#define Print_Warning() \
- do { \
- puts( \
- "\n" \
- "THE TIMES REPORTED BY THIS TEST INCLUDE DEBUG CODE!\n" \
- "\n" \
- ); \
- } while (0)
-
-#else
-#define Print_Warning()
-#endif
-
-/* variables */
-
-TEST_EXTERN volatile uint32_t end_time; /* ending time variable */
-TEST_EXTERN volatile uint32_t overhead; /* loop overhead variable */
-
-/* end of include file */