You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
no programs understand what their stack usage is exactly
...
When we call malloc, we just hope that we have enough stack space for it, we almost never check.
Malloc is heap allocation not stack allocation. You probably meant memory space and not stack space.
The text was updated successfully, but these errors were encountered:
No, this is correct. Like any function, Malloy needs some amount of stack space for its local variables. Moreover, the stack usage of malloc tends to be comparatively high due to things like
Malloc is heap allocation not stack allocation. You probably meant
memory space
and notstack space
.The text was updated successfully, but these errors were encountered: