diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/include/sys.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/sys.h b/src/include/sys.h index cf7cf78a4..25cdbed6a 100644 --- a/src/include/sys.h +++ b/src/include/sys.h @@ -32,8 +32,9 @@ #define chSysPuts(msg) sys_puts(msg)
/**
- * Abonormal system termination handler. Invoked by the ChibiOS/RT when an
- * abnormal unrecoverable condition is met.
+ * Halts the system. This function is invoked by the operating system when an
+ * unrecoverable error is detected (as example because a programming error in
+ * the application code that triggers an assertion while in debug mode).
*/
#define chSysHalt() sys_halt()
|