summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-05 15:27:01 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-05 15:27:01 +0000
commit76a670bd406a45a5c74253a3641d03f52e5da730 (patch)
treed8eff07ccf9066cdeccd74ed46e12865051a6f51 /cpukit
parent2009-08-05 Santosh G Vattam <vattam.santosh@gmail.com> (diff)
downloadrtems-76a670bd406a45a5c74253a3641d03f52e5da730.tar.bz2
2009-08-05 Joel Sherrill <joel.sherrill@OARcorp.com>
* rtems/include/rtems/rtems/region.h: Use new name. * score/include/rtems/debug.h: Fix spacing.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/rtems/include/rtems/rtems/region.h2
-rw-r--r--cpukit/score/include/rtems/debug.h6
3 files changed, 9 insertions, 4 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 11aa09d21b..a9ec7efda1 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,8 @@
+2009-08-05 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * rtems/include/rtems/rtems/region.h: Use new name.
+ * score/include/rtems/debug.h: Fix spacing.
+
2009-08-05 Chris Johns <chrisj@rtems.org>
* libmisc/dummy/dummy-networking.c: New.
diff --git a/cpukit/rtems/include/rtems/rtems/region.h b/cpukit/rtems/include/rtems/rtems/region.h
index 6e58ccb3f6..a86aae57cb 100644
--- a/cpukit/rtems/include/rtems/rtems/region.h
+++ b/cpukit/rtems/include/rtems/rtems/region.h
@@ -270,7 +270,7 @@ extern void _Region_Process_queue(Region_Control *the_region);
#define _Region_Debug_Walk( _the_region, _source ) \
do { \
- if ( _Debug_Is_enabled( RTEMS_DEBUG_REGION ) ) \
+ if ( rtems_debug_is_enabled( RTEMS_DEBUG_REGION ) ) \
_Heap_Walk( &(_the_region)->Memory, _source, false ); \
} while ( 0 )
diff --git a/cpukit/score/include/rtems/debug.h b/cpukit/score/include/rtems/debug.h
index 160491d359..c760b039ee 100644
--- a/cpukit/score/include/rtems/debug.h
+++ b/cpukit/score/include/rtems/debug.h
@@ -7,7 +7,7 @@
*/
/*
- * COPYRIGHT (c) 1989-2006.
+ * COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -52,14 +52,14 @@ void _Debug_Manager_initialization( void );
/**
* This routine enables the specified types of debug checks.
*/
-void rtems_debug_enable (
+void rtems_debug_enable(
rtems_debug_control to_be_enabled
);
/**
* This routine disables the specified types of debug checks.
*/
-void rtems_debug_disable (
+void rtems_debug_disable(
rtems_debug_control to_be_disabled
);