https://github.com/ARMmbed/core-util/blob/master/source/sbrk.cpp#L59 `void * mbed_krbs_ex(const ptrdiff_t size, ptrdiff_t *actual)` Is used in: ``` void * mbed_krbs(const ptrdiff_t size) { return mbed_krbs_ex(size, NULL); } ``` **Few issues:** 1. It is unclear why is `mbed_krbs_ex` public, and what is the purpose of the `actual` parameter. 1. https://github.com/ARMmbed/core-util/blob/master/source/sbrk.cpp#L82 this line does not seem to do anything. @bogdanm Can you comment on this?
https://github.com/ARMmbed/core-util/blob/master/source/sbrk.cpp#L59
void * mbed_krbs_ex(const ptrdiff_t size, ptrdiff_t *actual)Is used in:
Few issues:
mbed_krbs_expublic, and what is the purpose of theactualparameter.@bogdanm Can you comment on this?