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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/src/threadstackfree.c b/cpukit/score/src/threadstackfree.c
index ad23a57de2..ba376b8972 100644
--- a/cpukit/score/src/threadstackfree.c
+++ b/cpukit/score/src/threadstackfree.c
@@ -2,7 +2,7 @@
* Thread Handler
*
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -54,8 +54,8 @@ void _Thread_Stack_Free(
* routine properly matches the allocation of the stack.
*/
- if ( _Configuration_Table->stack_free_hook )
- (*_Configuration_Table->stack_free_hook)(
+ if ( Configuration.stack_free_hook )
+ (*Configuration.stack_free_hook)(
the_thread->Start.Initial_stack.area
);
else