Changeset 83bf105 in rtems for cpukit/sapi


Ignore:
Timestamp:
02/19/14 09:57:46 (10 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
4.11, 5, master
Children:
7ee4e72
Parents:
52eecba
git-author:
Sebastian Huber <sebastian.huber@…> (02/19/14 09:57:46)
git-committer:
Sebastian Huber <sebastian.huber@…> (02/21/14 08:38:24)
Message:

score: Rename _Internal_error_Occurred()

Rename _Internal_error_Occurred() into _Terminate().

Location:
cpukit/sapi
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • cpukit/sapi/include/rtems/fatal.h

    r52eecba r83bf105  
    6767 * @param[in] the_error is a 32-bit fatal error code.
    6868 *
    69  * @see _Internal_error_Occurred().
     69 * @see _Terminate().
    7070 */
    7171void rtems_fatal_error_occurred(
     
    7979 * @param[in] error is the fatal code.
    8080 *
    81  * @see _Internal_error_Occurred().
     81 * @see _Terminate().
    8282 */
    8383void rtems_fatal(
  • cpukit/sapi/src/exshutdown.c

    r52eecba r83bf105  
    1919void rtems_shutdown_executive( uint32_t result )
    2020{
    21   _Internal_error_Occurred( RTEMS_FATAL_SOURCE_EXIT, false, result );
     21  _Terminate( RTEMS_FATAL_SOURCE_EXIT, false, result );
    2222
    2323  /***************************************************************
  • cpukit/sapi/src/fatal.c

    r52eecba r83bf105  
    3131)
    3232{
    33   _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, the_error );
     33  _Terminate( INTERNAL_ERROR_RTEMS_API, FALSE, the_error );
    3434
    3535/* will not return from this routine */
  • cpukit/sapi/src/fatal2.c

    r52eecba r83bf105  
    3232)
    3333{
    34   _Internal_error_Occurred( source, false, error );
     34  _Terminate( source, false, error );
    3535}
  • cpukit/sapi/src/posixapi.c

    r52eecba r83bf105  
    4949  uint32_t code = ( domain << 8 ) | ( ( uint32_t ) eno & 0xffU );
    5050
    51   _Internal_error_Occurred( INTERNAL_ERROR_POSIX_API, false, code );
     51  _Terminate( INTERNAL_ERROR_POSIX_API, false, code );
    5252}
    5353
Note: See TracChangeset for help on using the changeset viewer.