summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/pheapwalk.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/pheapwalk.c')
-rw-r--r--cpukit/score/src/pheapwalk.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/cpukit/score/src/pheapwalk.c b/cpukit/score/src/pheapwalk.c
index 963be088c3..e20cf124d7 100644
--- a/cpukit/score/src/pheapwalk.c
+++ b/cpukit/score/src/pheapwalk.c
@@ -24,8 +24,19 @@ boolean _Protected_heap_Walk(
{
boolean status;
- _RTEMS_Lock_allocator();
+ /*
+ * If we are called from within a dispatching critical section,
+ * then it is forbidden to lock a mutex. But since we are inside
+ * a critical section, it should be safe to walk it unlocked.
+ *
+ * NOTE: Dispatching is also disabled during initialization.
+ */
+ if ( !_Thread_Dispatch_disable_level ) {
+ _RTEMS_Lock_allocator();
+ status = _Heap_Walk( the_heap, source, do_dump );
+ _RTEMS_Unlock_allocator();
+ } else {
status = _Heap_Walk( the_heap, source, do_dump );
- _RTEMS_Unlock_allocator();
+ }
return status;
}