summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/malloc.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-11-24 15:20:25 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-11-25 16:08:16 +0100
commit0273349594cd2f87a839bdaf2c33ad7fd26c81f5 (patch)
treec7ed39c984a104aa72024a145c889573d00ed7e9 /cpukit/libcsupport/src/malloc.c
parentarm: Use CPU_TIMESTAMP_USE_STRUCT_TIMESPEC (diff)
downloadrtems-0273349594cd2f87a839bdaf2c33ad7fd26c81f5.tar.bz2
libcsupport: malloc_is_system_state_OK()
Move system state check to malloc_is_system_state_OK().
Diffstat (limited to 'cpukit/libcsupport/src/malloc.c')
-rw-r--r--cpukit/libcsupport/src/malloc.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/cpukit/libcsupport/src/malloc.c b/cpukit/libcsupport/src/malloc.c
index 566cfa67e9..4645fdbbcb 100644
--- a/cpukit/libcsupport/src/malloc.c
+++ b/cpukit/libcsupport/src/malloc.c
@@ -24,8 +24,6 @@
#include "malloc_p.h"
-#include <rtems/score/sysstate.h>
-
void *malloc(
size_t size
)
@@ -48,8 +46,7 @@ void *malloc(
/*
* Do not attempt to allocate memory if not in correct system state.
*/
- if ( _System_state_Is_up(_System_state_Get()) &&
- !malloc_is_system_state_OK() )
+ if ( !malloc_is_system_state_OK() )
return NULL;
/*