Skip to content

Updating docs with new struct members #771

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/tutorials/optimize/memory/runtime_mem_trace.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Running out of memory is a common problem with resource constrained systems such

#### Using the memory tracer

The memory tracer is not enabled by default. To enable it, you need to enable the **`memory-tracing-enabled`** setting in the Mbed OS platform configuration options. We recommend doing this by add it to your `mbed_app.json`:
The memory tracer is not enabled by default. To enable it, you need to enable the **`memory-tracing-enabled`** setting in the Mbed OS platform configuration options. We recommend doing this by adding it to your `mbed_app.json`:

```
{
Expand Down
1 change: 1 addition & 0 deletions docs/tutorials/optimize/memory/runtime_stats.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Heap statistics provide exact information about the number of bytes dynamically
| reserved_size | Current number of bytes allocated for the heap. |
| alloc_cnt | Current number of allocations. |
| alloc_fail_cnt | Number of failed allocations. |
| overhead_size | Overhead added to heap for stats. |


#### Example heap statistics use cases
Expand Down