summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-08-29 21:30:32 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-08-29 21:30:32 +0000
commitadae165b7a5772447cecb491f7b97bea2b25fae3 (patch)
tree696a8f0c60abbfacae457b48d92df07b6b7aad03 /cpukit/sapi
parent2011-08-29 Joel Sherrill <joel.sherrilL@OARcorp.com> (diff)
downloadrtems-adae165b7a5772447cecb491f7b97bea2b25fae3.tar.bz2
2011-08-29 Joel Sherrill <joel.sherrilL@OARcorp.com>
* include/rtems/userenv.h, score/src/threadhandler.c: Formatting. * sapi/src/exshutdown.c: Add comments.
Diffstat (limited to 'cpukit/sapi')
-rw-r--r--cpukit/sapi/src/exshutdown.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/cpukit/sapi/src/exshutdown.c b/cpukit/sapi/src/exshutdown.c
index f004dbd755..0d3d8794c7 100644
--- a/cpukit/sapi/src/exshutdown.c
+++ b/cpukit/sapi/src/exshutdown.c
@@ -49,11 +49,19 @@ void rtems_shutdown_executive(
_System_state_Set( SYSTEM_STATE_SHUTDOWN );
_Thread_Stop_multitasking();
+
+ /*******************************************************************
+ *******************************************************************
+ *******************************************************************
+ ****** RETURN TO RTEMS_INITIALIZE_START_MULTITASKING() ******
+ ****** AND THEN TO BOOT_CARD() ******
+ *******************************************************************
+ *******************************************************************
+ *******************************************************************/
}
_Internal_error_Occurred(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_SHUTDOWN_WHEN_NOT_UP
);
-
}