Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
3dfa76cb
Commit
3dfa76cb
authored
May 31, 2014
by
Paul Sokolovsky
Browse files
unix: 64-bit cleanness.
parent
914bcf16
Changes
1
Hide whitespace changes
Inline
Side-by-side
unix/main.c
View file @
3dfa76cb
...
...
@@ -215,7 +215,7 @@ mp_obj_t mem_info(void) {
volatile
int
stack_dummy
;
printf
(
"mem: total=%d, current=%d, peak=%d
\n
"
,
m_get_total_bytes_allocated
(),
m_get_current_bytes_allocated
(),
m_get_peak_bytes_allocated
());
printf
(
"stack:
%d
\n
"
,
stack_top
-
(
char
*
)
&
stack_dummy
);
printf
(
"stack:
"
INT_FMT
"
\n
"
,
stack_top
-
(
char
*
)
&
stack_dummy
);
#if MICROPY_ENABLE_GC
gc_dump_info
();
#endif
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment