aboutsummaryrefslogtreecommitdiffstats
path: root/os/common/oslib/include/chheap.h
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2017-10-01 19:23:02 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2017-10-01 19:23:02 +0000
commit23c7476ac4f0ebfc7b09d9858149d9bf79f1122e (patch)
tree2480580f82d813952d9327846bdfbb0f688e4c7f /os/common/oslib/include/chheap.h
parentcc61794d1a00a74f31c650522988a2f327b6cfab (diff)
downloadChibiOS-23c7476ac4f0ebfc7b09d9858149d9bf79f1122e.tar.gz
ChibiOS-23c7476ac4f0ebfc7b09d9858149d9bf79f1122e.tar.bz2
ChibiOS-23c7476ac4f0ebfc7b09d9858149d9bf79f1122e.zip
Changed my mind, modified types.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10742 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/common/oslib/include/chheap.h')
-rw-r--r--os/common/oslib/include/chheap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/common/oslib/include/chheap.h b/os/common/oslib/include/chheap.h
index 0447d546d..0b259a329 100644
--- a/os/common/oslib/include/chheap.h
+++ b/os/common/oslib/include/chheap.h
@@ -95,7 +95,7 @@ union heap_header {
* @brief Structure describing a memory heap.
*/
struct memory_heap {
- memgetfunc_t provider; /**< @brief Memory blocks provider for
+ memgetfunc2_t provider; /**< @brief Memory blocks provider for
this heap. */
heap_header_t header; /**< @brief Free blocks list header. */
#if CH_CFG_USE_MUTEXES == TRUE