这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » 嵌入式开发 » MCU » 无操作系统,能不能用malloc动态分配内存。

共1条 1/1 1 跳转至

无操作系统,能不能用malloc动态分配内存。

菜鸟
2006-01-13 17:18:08     打赏

我已经重新定义了__user_initial_stackheap

__value_in_regs struct __initial_stackheap __user_initial_stackheap(
unsigned R0, unsigned SP, unsigned R2, unsigned SL)
{
struct __initial_stackheap config;

config.heap_base = (unsigned int)&bottom_of_heap;

config.stack_base = SP; // inherit SP from the execution environment

return config;
}

确保地址正确,如果在程序中使用malloc的话,

在初始化C库的时候就出错了,

执行到这里__rt_lib_init 就出错。

各位大虾可否指点一二




关键词: 操作系统     能不     能用     malloc     动态     分配         

共1条 1/1 1 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]