commit | d7119b889f8582e20f073a2f8369f176a724d8a5 | [log] [tgz] |
---|---|---|
author | Christopher Friedt <cfriedt@meta.com> | Tue Jul 18 08:33:41 2023 -0400 |
committer | Chris Friedt <chrisfriedt@gmail.com> | Mon Jul 24 12:59:43 2023 -0400 |
tree | 48398c5b8249dcb9c3ec1164bcfe2205d448bc87 | |
parent | dcdebb616a61ae51ddea8a80a85f7e7ed35d1f4d [diff] |
kernel: dynamic: declare dynamic stubs when disabled With some of the recent work to disable unnecessary system calls, there is a scenario where `z_impl_k_thread_stack_free()` is not defined and an undefined symbol error occurs. Safety was very concerned that dynamic thread stack code might touch other code that does not malloc, so add a separate file for the stack alloc and free stubs. Signed-off-by: Christopher Friedt <cfriedt@meta.com>