From 90e6d39f8e27a68ddb8ecfd3f5563eb61bb205d4 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 21 Jul 2009 19:27:44 +0000 Subject: 2009-07-21 Joel Sherrill * sapi/src/debug.c, score/include/rtems/debug.h: Rename _Debug_Is_enabled to rtems_is_debug_enabled. --- cpukit/sapi/src/debug.c | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) (limited to 'cpukit/sapi') diff --git a/cpukit/sapi/src/debug.c b/cpukit/sapi/src/debug.c index 38e05c9982..fc9d57d874 100644 --- a/cpukit/sapi/src/debug.c +++ b/cpukit/sapi/src/debug.c @@ -1,7 +1,7 @@ /* * Debug Manager * - * COPYRIGHT (c) 1989-1999. + * COPYRIGHT (c) 1989-2009. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -18,11 +18,10 @@ #include #include -/*PAGE +/* * * _Debug_Manager_initialization */ - void _Debug_Manager_initialization( void ) { rtems_debug_disable( RTEMS_DEBUG_ALL_MASK ); @@ -32,7 +31,6 @@ void _Debug_Manager_initialization( void ) * * rtems_debug_enable */ - void rtems_debug_enable ( rtems_debug_control to_be_enabled ) @@ -40,11 +38,9 @@ void rtems_debug_enable ( _Debug_Level |= to_be_enabled; } -/*PAGE - * +/* * rtems_debug_disable */ - void rtems_debug_disable ( rtems_debug_control to_be_disabled ) @@ -52,12 +48,10 @@ void rtems_debug_disable ( _Debug_Level &= ~to_be_disabled; } -/*PAGE - * - * _Debug_Is_enabled +/* + * rtems_debug_is_enabled */ - -bool _Debug_Is_enabled( +bool rtems_debug_is_enabled( rtems_debug_control level ) { -- cgit v1.2.3