From 2807d55666102610880c8e01e507b2fe9a994787 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 13 Feb 2020 11:37:02 +0100 Subject: score: Clean up wkspace.c Remove DEBUG_WORKSPACE support. There are better ways to trace the application. See Tracing chapter in the RTEMS User Manual. Remove superfluous includes. Change format. --- cpukit/score/src/wkspace.c | 42 +++--------------------------------------- 1 file changed, 3 insertions(+), 39 deletions(-) diff --git a/cpukit/score/src/wkspace.c b/cpukit/score/src/wkspace.c index 049b857953..8c3f518779 100644 --- a/cpukit/score/src/wkspace.c +++ b/cpukit/score/src/wkspace.c @@ -22,18 +22,9 @@ #include #include #include -#include -#include #include #include -#include - -/* #define DEBUG_WORKSPACE */ -#if defined(DEBUG_WORKSPACE) - #include -#endif - Heap_Control _Workspace_Area; static void _Workspace_Initialize( void ) @@ -113,39 +104,12 @@ void _Workspace_Handler_initialization( _Heap_Protection_set_delayed_free_fraction( &_Workspace_Area, 1 ); } -void *_Workspace_Allocate( - size_t size -) +void *_Workspace_Allocate( size_t size ) { - void *memory; - - memory = _Heap_Allocate( &_Workspace_Area, size ); - #if defined(DEBUG_WORKSPACE) - printk( - "Workspace_Allocate(%d) from %p/%p -> %p\n", - size, - __builtin_return_address( 0 ), - __builtin_return_address( 1 ), - memory - ); - #endif - return memory; + return _Heap_Allocate( &_Workspace_Area, size ); } -/* - * _Workspace_Free - */ -void _Workspace_Free( - void *block -) +void _Workspace_Free( void *block ) { - #if defined(DEBUG_WORKSPACE) - printk( - "Workspace_Free(%p) from %p/%p\n", - block, - __builtin_return_address( 0 ), - __builtin_return_address( 1 ) - ); - #endif _Heap_Free( &_Workspace_Area, block ); } -- cgit v1.2.3