summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadhandler.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2006-03-08 18:55:45 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2006-03-08 18:55:45 +0000
commit1ff385c21492aac01d71c2af07aefe6c167e67d9 (patch)
treea5b8a668035d7f6cf5fc772e6840fb8cd566bccb /cpukit/score/src/threadhandler.c
parent2006-03-08 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-1ff385c21492aac01d71c2af07aefe6c167e67d9.tar.bz2
2006-03-08 Joel Sherrill <joel@OARcorp.com>
PR 761/rtems * score/src/threadhandler.c: Add volatile cast so test is weak function is present will do something. Otherwise, it can be assume by gcc to always be a true condition.
Diffstat (limited to 'cpukit/score/src/threadhandler.c')
-rw-r--r--cpukit/score/src/threadhandler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/src/threadhandler.c b/cpukit/score/src/threadhandler.c
index c5ff9c03af..c6cf23e660 100644
--- a/cpukit/score/src/threadhandler.c
+++ b/cpukit/score/src/threadhandler.c
@@ -113,7 +113,7 @@ void _Thread_Handler( void )
_Thread_Enable_dispatch();
#if defined(__USE_INIT_FINI__)
- if (!doneCons && _init)
+ if (!doneCons && (volatile void *)_init)
_init ();
#endif
#if defined(__USE__MAIN__)