end.3

来自「Linux.Programming.by example 的源代码绝对经典」· 3 代码 · 共 41 行

3
41
字号
.TH END 3 .SH NAMEend, etext, edata \- last locations in program.SH SYNOPSIS.B extern end;.br.B extern etext;.br.B extern edata;.SH DESCRIPTIONThese names refer neither to routinesnor to locations with interesting contents.The address of.I etextis the first address above the program text,.I edataabove the initialized data region, and.I endabove the uninitialized data region..PPWhen execution begins, the program breakcoincides with.I end,but many functions reset the program break, among themthe routines of.IR brk (2),.IR malloc (3), standard input/output.RI ( stdio (3)),the profile.RB ( \-p )option of .IR cc (1),etc.The current value of the program breakis reliably returned by `sbrk(0)',see.IR brk (2)..SH "SEE ALSO"brk(2), malloc(3)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?