diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/coverage/chconf.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/coverage/chconf.h b/test/coverage/chconf.h index 8f172f453..d7b4c7e40 100644 --- a/test/coverage/chconf.h +++ b/test/coverage/chconf.h @@ -124,6 +124,16 @@ /*===========================================================================*/
/**
+ * @brief Threads registry APIs.
+ * @details If enabled then the registry APIs are included in the kernel.
+ *
+ * @note The default is @p TRUE.
+ */
+#if !defined(CH_USE_REGISTRY) || defined(__DOXYGEN__)
+#define CH_USE_REGISTRY TRUE
+#endif
+
+/**
* @brief Threads synchronization APIs.
* @details If enabled then the @p chThdWait() function is included in
* the kernel.
|