summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadstackfree.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/threadstackfree.c')
-rw-r--r--cpukit/score/src/threadstackfree.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/score/src/threadstackfree.c b/cpukit/score/src/threadstackfree.c
index 64e0278e1b..926c1e9eb1 100644
--- a/cpukit/score/src/threadstackfree.c
+++ b/cpukit/score/src/threadstackfree.c
@@ -41,6 +41,9 @@ void _Thread_Stack_Free(
Thread_Control *the_thread
)
{
+ rtems_stack_free_hook stack_free_hook =
+ rtems_configuration_get_stack_free_hook();
+
#if defined(RTEMS_SCORE_THREAD_ENABLE_USER_PROVIDED_STACK_VIA_API)
/*
* If the API provided the stack space, then don't free it.
@@ -55,8 +58,5 @@ void _Thread_Stack_Free(
* routine properly matches the allocation of the stack.
*/
- if ( Configuration.stack_free_hook )
- (*Configuration.stack_free_hook)( the_thread->Start.Initial_stack.area );
- else
- _Workspace_Free( the_thread->Start.Initial_stack.area );
+ (*stack_free_hook)( the_thread->Start.Initial_stack.area );
}