From e7ce41bb6df5d1b52fa1bb6555d68eb5a5c8b362 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 17 Jul 2013 16:14:49 +0200 Subject: libcsupport: Do not use _ISR_Nest_level The _Thread_Dispatch_is_enabled() is false if _ISR_Nest_level is not equal to zero. --- cpukit/libcsupport/src/malloc_deferred.c | 3 --- cpukit/libcsupport/src/realloc.c | 3 --- 2 files changed, 6 deletions(-) diff --git a/cpukit/libcsupport/src/malloc_deferred.c b/cpukit/libcsupport/src/malloc_deferred.c index a2e95ea9ce..9e6fbb3bf8 100644 --- a/cpukit/libcsupport/src/malloc_deferred.c +++ b/cpukit/libcsupport/src/malloc_deferred.c @@ -34,9 +34,6 @@ bool malloc_is_system_state_OK(void) if ( !_Thread_Dispatch_is_enabled() ) return false; - if ( _ISR_Nest_level > 0 ) - return false; - return true; } diff --git a/cpukit/libcsupport/src/realloc.c b/cpukit/libcsupport/src/realloc.c index a831cae110..5c7992d8a7 100644 --- a/cpukit/libcsupport/src/realloc.c +++ b/cpukit/libcsupport/src/realloc.c @@ -40,9 +40,6 @@ void *realloc( if (_System_state_Is_up(_System_state_Get())) { if (!_Thread_Dispatch_is_enabled()) return (void *) 0; - - if (_ISR_Nest_level > 0) - return (void *) 0; } /* -- cgit v1.2.3