diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-02-03 16:13:59 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-02-03 16:13:59 +0000 |
commit | 36deb792c105ce4900870abe69da77393ce7a692 (patch) | |
tree | 6edea4eec9246743540f417c5d1a005595428705 /src/chheap.c | |
parent | 528e9fea357b8b24069d99657230ba28968f5d0c (diff) | |
download | ChibiOS-36deb792c105ce4900870abe69da77393ce7a692.tar.gz ChibiOS-36deb792c105ce4900870abe69da77393ce7a692.tar.bz2 ChibiOS-36deb792c105ce4900870abe69da77393ce7a692.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@714 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/chheap.c')
-rw-r--r-- | src/chheap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/chheap.c b/src/chheap.c index 8ba55f9ad..c07212226 100644 --- a/src/chheap.c +++ b/src/chheap.c @@ -65,10 +65,9 @@ static struct { /**
* @brief Initializes the allocator subsystem.
*
- * @note It is internally invoked, this function should not normally be
- * invoked from the user code.
+ * @note Internal use only.
*/
-void chHeapInit(void) {
+void heap_init(void) {
struct header *hp;
#if CH_HEAP_SIZE == 0
|