score: Change debug helper functions

Rename rtems_internal_error_description() to
rtems_internal_error_text().  Rename rtems_fatal_source_description() to
rtems_fatal_source_text().  Rename rtems_status_code_description() to
rtems_status_text().  Remove previous implementation of
rtems_status_text().
This commit is contained in:
Sebastian Huber
2014-02-07 09:53:47 +01:00
parent 97cf623d4a
commit bab16de267
18 changed files with 95 additions and 132 deletions

View File

@@ -144,7 +144,7 @@ fatal.texi: fatal.t
-n "Board Support Packages" < $< > $@
bsp.texi: bsp.t
$(BMENU2) -p "Fatal Error Manager INTERNAL_ERROR_DESCRIPTION - Returns a description for an internal error code" \
$(BMENU2) -p "Fatal Error Manager INTERNAL_ERROR_TEXT - Returns a text for an internal error code" \
-u "Top" \
-n "User Extensions Manager" < $< > $@

View File

@@ -40,16 +40,14 @@
@section Directives
@page
@subsection STATUS_CODE_DESCRIPTION - Returns a description for a status code
@cindex fatal error
@subsection STATUS_TEXT - Returns a text for a status code
@subheading CALLING SEQUENCE:
@ifset is-C
@findex rtems_status_code_description
@findex rtems_status_text
@example
const char *rtems_status_code_description(
const char *rtems_status_text(
rtems_status_code code
);
@end example
@@ -57,8 +55,9 @@ const char *rtems_status_code_description(
@subheading DIRECTIVE STATUS CODES
The status code description or "?" in case the passed status code is invalid.
The status code text or "?" in case the passed status code is invalid.
@subheading DESCRIPTION:
Returns a description for a status code.
Returns a text for a status code. The text for each status code is the
enumerator constant.

View File

@@ -3,7 +3,7 @@
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@node Example Application, Glossary, Directive Status Codes STATUS_CODE_DESCRIPTION - Returns a description for a status code, Top
@node Example Application, Glossary, Directive Status Codes STATUS_TEXT - Returns a text for a status code, Top
@chapter Example Application
@example

View File

@@ -230,16 +230,16 @@ Prints the exception frame via printk().
@c
@c
@page
@subsection FATAL_SOURCE_DESCRIPTION - Returns a description for a fatal source
@subsection FATAL_SOURCE_TEXT - Returns a text for a fatal source
@cindex fatal error
@subheading CALLING SEQUENCE:
@ifset is-C
@findex rtems_fatal_source_description
@findex rtems_fatal_source_text
@example
const char *rtems_fatal_source_description(
const char *rtems_fatal_source_text(
rtems_fatal_source source
);
@end example
@@ -247,26 +247,27 @@ const char *rtems_fatal_source_description(
@subheading DIRECTIVE STATUS CODES
The fatal source description or "?" in case the passed fatal source is invalid.
The fatal source text or "?" in case the passed fatal source is invalid.
@subheading DESCRIPTION:
Returns a description for a fatal source.
Returns a text for a fatal source. The text for fatal source is the enumerator
constant.
@c
@c
@c
@page
@subsection INTERNAL_ERROR_DESCRIPTION - Returns a description for an internal error code
@subsection INTERNAL_ERROR_TEXT - Returns a text for an internal error code
@cindex fatal error
@subheading CALLING SEQUENCE:
@ifset is-C
@findex rtems_internal_error_description
@findex rtems_internal_error_text
@example
const char *rtems_internal_error_description(
const char *rtems_internal_error_text(
rtems_fatal_code error
);
@end example
@@ -274,8 +275,9 @@ const char *rtems_internal_error_description(
@subheading DIRECTIVE STATUS CODES
The error code description or "?" in case the passed error code is invalid.
The error code text or "?" in case the passed error code is invalid.
@subheading DESCRIPTION:
Returns a description for an internal error code.
Returns a text for an internal error code. The text for each internal error
code is the enumerator constant.