summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/gxx_wrappers.c
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/libcsupport/src/gxx_wrappers.c
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/libcsupport/src/gxx_wrappers.c')
-rw-r--r--cpukit/libcsupport/src/gxx_wrappers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/gxx_wrappers.c b/cpukit/libcsupport/src/gxx_wrappers.c
index cd1ecc6339..31f6254063 100644
--- a/cpukit/libcsupport/src/gxx_wrappers.c
+++ b/cpukit/libcsupport/src/gxx_wrappers.c
@@ -133,7 +133,7 @@ void *rtems_gxx_getspecific(__gthread_key_t key)
*/
status = rtems_task_variable_add( RTEMS_SELF, (void **)key, key->dtor );
if ( status != RTEMS_SUCCESSFUL ) {
- _Internal_error_Occurred(
+ _Terminate(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_GXX_KEY_ADD_FAILED
@@ -204,7 +204,7 @@ void rtems_gxx_mutex_init (__gthread_mutex_t *mutex)
status
);
#endif
- _Internal_error_Occurred(
+ _Terminate(
INTERNAL_ERROR_CORE,
true,
INTERNAL_ERROR_GXX_MUTEX_INIT_FAILED