summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-02-19 10:57:46 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-02-21 09:38:24 +0100
commit83bf1054860a09dbdc31d2661fdf5382de32774a (patch)
tree79bae04f04d7eeb18406a7bd652565c993110dfe /cpukit/score/src
parentposix: Set pthread attribute values in detach and setschedparm methods. (diff)
downloadrtems-83bf1054860a09dbdc31d2661fdf5382de32774a.tar.bz2
score: Rename _Internal_error_Occurred()
Rename _Internal_error_Occurred() into _Terminate().
Diffstat (limited to 'cpukit/score/src')
-rw-r--r--cpukit/score/src/heap.c2
-rw-r--r--cpukit/score/src/interr.c2
-rw-r--r--cpukit/score/src/isr.c2
-rw-r--r--cpukit/score/src/mpci.c8
-rw-r--r--cpukit/score/src/objectinitializeinformation.c2
-rw-r--r--cpukit/score/src/objectmp.c6
-rw-r--r--cpukit/score/src/thread.c2
-rw-r--r--cpukit/score/src/threadblockingoperationcancel.c2
-rw-r--r--cpukit/score/src/threadhandler.c2
-rw-r--r--cpukit/score/src/threadmp.c2
-rw-r--r--cpukit/score/src/wkspace.c4
11 files changed, 17 insertions, 17 deletions
diff --git a/cpukit/score/src/heap.c b/cpukit/score/src/heap.c
index 8312d419c1..b13254e341 100644
--- a/cpukit/score/src/heap.c
+++ b/cpukit/score/src/heap.c
@@ -159,7 +159,7 @@ static uint32_t instance = 0;
)
{
/* FIXME */
- _Internal_error_Occurred( INTERNAL_ERROR_CORE, false, 0xdeadbeef );
+ _Terminate( INTERNAL_ERROR_CORE, false, 0xdeadbeef );
}
#endif
diff --git a/cpukit/score/src/interr.c b/cpukit/score/src/interr.c
index 3836f527cb..c2a9fbe00f 100644
--- a/cpukit/score/src/interr.c
+++ b/cpukit/score/src/interr.c
@@ -28,7 +28,7 @@ System_state_Codes _System_state_Current;
Internal_errors_Information _Internal_errors_What_happened;
-void _Internal_error_Occurred(
+void _Terminate(
Internal_errors_Source the_source,
bool is_internal,
Internal_errors_t the_error
diff --git a/cpukit/score/src/isr.c b/cpukit/score/src/isr.c
index 0b0cbe9acd..0cea48e1a1 100644
--- a/cpukit/score/src/isr.c
+++ b/cpukit/score/src/isr.c
@@ -45,7 +45,7 @@ void _ISR_Handler_initialization( void )
uint32_t cpu;
if ( !_Stack_Is_enough( stack_size ) )
- _Internal_error_Occurred(
+ _Terminate(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_INTERRUPT_STACK_TOO_SMALL
diff --git a/cpukit/score/src/mpci.c b/cpukit/score/src/mpci.c
index bc289943f3..93ca1f49ee 100644
--- a/cpukit/score/src/mpci.c
+++ b/cpukit/score/src/mpci.c
@@ -47,7 +47,7 @@ void _MPCI_Handler_initialization(
users_mpci_table = _Configuration_MP_table->User_mpci_table;
if ( _System_state_Is_multiprocessing && !users_mpci_table )
- _Internal_error_Occurred(
+ _Terminate(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_NO_MPCI
@@ -149,7 +149,7 @@ MP_packet_Prefix *_MPCI_Get_packet ( void )
(*_MPCI_table->get_packet)( &the_packet );
if ( the_packet == NULL )
- _Internal_error_Occurred(
+ _Terminate(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_OUT_OF_PACKETS
@@ -316,7 +316,7 @@ Thread _MPCI_Receive_server(
the_function = _MPCI_Packet_processors[ the_packet->the_class ];
if ( !the_function )
- _Internal_error_Occurred(
+ _Terminate(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_BAD_PACKET
@@ -398,7 +398,7 @@ void _MPCI_Internal_packets_Process_packet (
_MPCI_Return_packet( the_packet_prefix );
- _Internal_error_Occurred(
+ _Terminate(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_INCONSISTENT_MP_INFORMATION
diff --git a/cpukit/score/src/objectinitializeinformation.c b/cpukit/score/src/objectinitializeinformation.c
index a791bd7220..6a09e09e83 100644
--- a/cpukit/score/src/objectinitializeinformation.c
+++ b/cpukit/score/src/objectinitializeinformation.c
@@ -78,7 +78,7 @@ void _Objects_Initialize_information(
* Unlimited and maximum of zero is illogical.
*/
if ( information->auto_extend && maximum_per_allocation == 0) {
- _Internal_error_Occurred(
+ _Terminate(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_UNLIMITED_AND_MAXIMUM_IS_0
diff --git a/cpukit/score/src/objectmp.c b/cpukit/score/src/objectmp.c
index 12daae6c91..b6a7c44190 100644
--- a/cpukit/score/src/objectmp.c
+++ b/cpukit/score/src/objectmp.c
@@ -33,7 +33,7 @@ void _Objects_MP_Handler_early_initialization(void)
maximum_nodes = _Configuration_MP_table->maximum_nodes;
if ( node < 1 || node > maximum_nodes )
- _Internal_error_Occurred(
+ _Terminate(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_INVALID_NODE
@@ -105,7 +105,7 @@ bool _Objects_MP_Allocate_and_open (
if ( is_fatal_error == false )
return false;
- _Internal_error_Occurred(
+ _Terminate(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_OUT_OF_GLOBAL_OBJECTS
@@ -144,7 +144,7 @@ void _Objects_MP_Close (
}
- _Internal_error_Occurred(
+ _Terminate(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_INVALID_GLOBAL_ID
diff --git a/cpukit/score/src/thread.c b/cpukit/score/src/thread.c
index 5587ac3a3b..c680f693c1 100644
--- a/cpukit/score/src/thread.c
+++ b/cpukit/score/src/thread.c
@@ -36,7 +36,7 @@ void _Thread_Handler_initialization(void)
if ( rtems_configuration_get_stack_allocate_hook() == NULL ||
rtems_configuration_get_stack_free_hook() == NULL)
- _Internal_error_Occurred(
+ _Terminate(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_BAD_STACK_HOOK
diff --git a/cpukit/score/src/threadblockingoperationcancel.c b/cpukit/score/src/threadblockingoperationcancel.c
index 70bdb3da18..cb852b2ae1 100644
--- a/cpukit/score/src/threadblockingoperationcancel.c
+++ b/cpukit/score/src/threadblockingoperationcancel.c
@@ -51,7 +51,7 @@ void _Thread_blocking_operation_Cancel(
#if defined(RTEMS_DEBUG)
if ( (sync_state == THREAD_BLOCKING_OPERATION_SYNCHRONIZED) ||
(sync_state == THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED) ) {
- _Internal_error_Occurred(
+ _Terminate(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_IMPLEMENTATION_BLOCKING_OPERATION_CANCEL
diff --git a/cpukit/score/src/threadhandler.c b/cpukit/score/src/threadhandler.c
index 80941f82de..4ecc789aff 100644
--- a/cpukit/score/src/threadhandler.c
+++ b/cpukit/score/src/threadhandler.c
@@ -223,7 +223,7 @@ void _Thread_Handler( void )
_User_extensions_Thread_exitted( executing );
- _Internal_error_Occurred(
+ _Terminate(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_THREAD_EXITTED
diff --git a/cpukit/score/src/threadmp.c b/cpukit/score/src/threadmp.c
index 1ab899b968..64d30fd765 100644
--- a/cpukit/score/src/threadmp.c
+++ b/cpukit/score/src/threadmp.c
@@ -77,7 +77,7 @@ Thread_Control *_Thread_MP_Allocate_proxy (
return the_thread;
}
- _Internal_error_Occurred(
+ _Terminate(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_OUT_OF_PROXIES
diff --git a/cpukit/score/src/wkspace.c b/cpukit/score/src/wkspace.c
index f437b885c0..8068c636b5 100644
--- a/cpukit/score/src/wkspace.c
+++ b/cpukit/score/src/wkspace.c
@@ -117,7 +117,7 @@ void _Workspace_Handler_initialization(
}
if ( remaining > 0 ) {
- _Internal_error_Occurred(
+ _Terminate(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_TOO_LITTLE_WORKSPACE
@@ -185,7 +185,7 @@ void *_Workspace_Allocate_or_fatal_error(
#endif
if ( memory == NULL )
- _Internal_error_Occurred(
+ _Terminate(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_WORKSPACE_ALLOCATION