summaryrefslogtreecommitdiffstats
path: root/testsuites/support
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-02-22 20:14:36 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-02-22 20:14:36 +0000
commitba3911317a112b7ddfa09d0a0c97880853546ff7 (patch)
treed51a3d392db74c3765f51e93241812dd6c102b82 /testsuites/support
parentChanged io manager initialization routine to not be static and added it here. (diff)
downloadrtems-ba3911317a112b7ddfa09d0a0c97880853546ff7.tar.bz2
The name of the test support routine pause was changed to rtems_test_pause
to avoid conflict with the standard POSIX routine pause(2).
Diffstat (limited to 'testsuites/support')
-rw-r--r--testsuites/support/include/tmacros.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/support/include/tmacros.h b/testsuites/support/include/tmacros.h
index affc132edd..f5c5e8bfbf 100644
--- a/testsuites/support/include/tmacros.h
+++ b/testsuites/support/include/tmacros.h
@@ -69,7 +69,7 @@ extern "C" {
#define puts_nocr printf
-#define pause() \
+#define rtems_test_pause() \
do { \
char buffer[ 80 ]; \
printf( "<pause>" ); fflush( stdout ); \
@@ -77,7 +77,7 @@ extern "C" {
puts( "" ); \
} while ( 0 )
-#define pause_and_screen_number( _screen ) \
+#define rtems_test_pause_and_screen_number( _screen ) \
do { \
char buffer[ 80 ]; \
printf( "<pause - screen %d>", (_screen) ); fflush( stdout ); \