summaryrefslogtreecommitdiff
path: root/doc/MemoryAnalysis.md
diff options
context:
space:
mode:
authormashuptwice <info@mashup-tech.de>2022-08-28 14:08:04 +0200
committerJF <JF002@users.noreply.github.com>2022-10-10 12:43:11 +0200
commit668820ef5ade329b9caf99d77827adf7c0869862 (patch)
treee9147037848a4c3883a600eaf54ba5bbbb776274 /doc/MemoryAnalysis.md
parent0f1d0bbd1d59f1d8c5572e1484edb8cb2dee3b53 (diff)
Edit all occurences of "watchface" to "watch face"
Diffstat (limited to 'doc/MemoryAnalysis.md')
-rw-r--r--doc/MemoryAnalysis.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/MemoryAnalysis.md b/doc/MemoryAnalysis.md
index 0feb0f9e..fe493ba0 100644
--- a/doc/MemoryAnalysis.md
+++ b/doc/MemoryAnalysis.md
@@ -245,7 +245,7 @@ void* __wrap_malloc(size_t size) {
Now, your function `__wrap_malloc()` will be called instead of `malloc()`. You can call the actual malloc from the stdlib by calling `__real_malloc()`.
-Using this technique, I was able to trace all malloc calls at boot (boot -> digital watchface):
+Using this technique, I was able to trace all malloc calls at boot (boot -> digital watch face):
- system task = 3464 bytes (SystemTask could potentially be declared as a global variable to avoid heap allocation here)
- string music = 31 (maybe we should not use std::string when not needed, as it does heap allocation)