aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/templates
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-02-02 20:20:12 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-02-02 20:20:12 +0000
commite515bcf581c92643c21eb6ed53ba0d0b1604fe4b (patch)
treeefae1098d4db1532fcf51f1387add77747ffc061 /os/kernel/templates
parentce91c3f44a3f0b9cacd07972a052c7360fb24053 (diff)
downloadChibiOS-e515bcf581c92643c21eb6ed53ba0d0b1604fe4b.tar.gz
ChibiOS-e515bcf581c92643c21eb6ed53ba0d0b1604fe4b.tar.bz2
ChibiOS-e515bcf581c92643c21eb6ed53ba0d0b1604fe4b.zip
Implemented registry subsystem (still in progress).
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1558 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/templates')
-rw-r--r--os/kernel/templates/chconf.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/os/kernel/templates/chconf.h b/os/kernel/templates/chconf.h
index 7fc7ea82b..4cb12bd74 100644
--- a/os/kernel/templates/chconf.h
+++ b/os/kernel/templates/chconf.h
@@ -126,6 +126,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.