VC ++系统编程 - 连续内存位置中全局变量的内存分配

时间:2013-05-30 07:05:09

标签: visual-c++ memory-management linker

有人可以解释一下如何在ram中的连续内存位置存储全局结构吗?

我尝试了以下但它不起作用..!

编译指示部分(“ramsec”,读,写)

编译指示部分(“ramsec1”,读,写)

__declspec(allocate("ramsec"))
__declspec(align(8)) 
StructABC_t a;
__declspec(allocate("ramsec"))
__declspec(align(8)) 
StructDA_t b;

我希望上面的a,b结构存储在ram中彼此相邻!! ???

0 个答案:

没有答案