You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ad...@apache.org on 2016/06/23 21:20:04 UTC

[12/16] incubator-mynewt-site git commit: Updated heap function list to table with descriptions.

Updated heap function list to table with descriptions.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/commit/cefe9882
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/tree/cefe9882
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/diff/cefe9882

Branch: refs/heads/master
Commit: cefe9882efc3932774f8ca9835c44fe621a45c62
Parents: 50243e1
Author: = <=>
Authored: Thu Jun 23 10:08:24 2016 -0700
Committer: = <=>
Committed: Thu Jun 23 10:08:24 2016 -0700

----------------------------------------------------------------------
 docs/os/core_os/heap/heap.md | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/cefe9882/docs/os/core_os/heap/heap.md
----------------------------------------------------------------------
diff --git a/docs/os/core_os/heap/heap.md b/docs/os/core_os/heap/heap.md
index 77abd28..1981a4f 100644
--- a/docs/os/core_os/heap/heap.md
+++ b/docs/os/core_os/heap/heap.md
@@ -17,9 +17,11 @@ N/A
 
 The functions available in heap are:
 
-* [os_free](os_free)
-* [os_malloc](os_malloc)
-* [os_realloc](os_realloc)
+| **Function** | **Description** |
+|-----------|-------------|
+| [os_free](os_free) | Frees previously allocated memory back to the heap. |
+| [os_malloc](os_malloc) | Allocates the given number of bytes from heap and returns a pointer to it. |
+| [os_realloc](os_realloc) | Tries to resize previously allocated memory block, and returns pointer to resized memory. |