Linux 汇编; bss段内存初始化为0?
在测试中,我在程序的 bss 部分中运行的内存在我在那里写入任何内容之前始终被初始化为零。这是巧合,还是系统在将这些内存页交给我之前“清理”了它们?我在 Ubuntu 上使用 nasm 汇编器(如果这可能有所不同的话)。
In tests I have run the memory in the bss section of my programs has always been initialized to zero before I write anything there. Is this coincidental, or is the system "cleaning" these memory pages before handing them to me? I am using the nasm assembler on Ubuntu (if that possibly makes a difference).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你的应用程序的可执行文件(ELF)有一个BSS部分的大小信息,当它启动时,内核为BSS部分分配一块内存,并将其清理为0。这是由ABI(应用程序二进制接口)定义的,所以你不需要担心不同机器上有不同。
Your application's executable file(ELF) has a BSS section's size information, when it starts up, kernel allocate a block of memory for BSS section, and clean it to 0. This defined by ABI(Application Binary Interface), so you needn't worry about there are different on different machine.
是 BSS 初始化为零。
Yes BSS is initialized to zero.