summaryrefslogtreecommitdiffstats
path: root/cpukit/score
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-12-09 10:49:49 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-12-12 08:03:14 +0100
commit6a9282d9bb7dd6d7665adb858161edf4e1d0778a (patch)
treeece20b650906f16036ac2de3f90732c1f914401a /cpukit/score
parentscore: Remove fatal is internal indicator (diff)
downloadrtems-6a9282d9bb7dd6d7665adb858161edf4e1d0778a.tar.bz2
Rename is_internal to always_set_to_false
Update #2825.
Diffstat (limited to 'cpukit/score')
-rw-r--r--cpukit/score/include/rtems/score/userext.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/include/rtems/score/userext.h b/cpukit/score/include/rtems/score/userext.h
index 61de992f23..5af5824808 100644
--- a/cpukit/score/include/rtems/score/userext.h
+++ b/cpukit/score/include/rtems/score/userext.h
@@ -195,14 +195,14 @@ typedef void( *User_extensions_thread_exitted_extension )(
*
* @param[in] source The fatal source indicating the subsystem the fatal
* condition originated in.
- * @param[in] is_internal This parameter is always false and provide only for
- * backward compatibility reasons.
+ * @param[in] always_set_to_false This parameter is always set to false and
+ * provided only for backward compatibility reasons.
* @param[in] code The fatal error code. This value must be interpreted with
* respect to the source.
*/
typedef void( *User_extensions_fatal_extension )(
Internal_errors_Source source,
- bool is_internal,
+ bool always_set_to_false,
Internal_errors_t code
);