end.3
来自「Unix操作系统minix 2.0源码」· 3 代码 · 共 43 行
3
43 行
.\" @(#)end.3 6.2 (Berkeley) 5/12/86.\".TH END 3 "May 12, 1986".AT 3.SH NAMEend, etext, edata \- last locations in program.SH SYNOPSIS.nf.ft Bextern int etext;extern int edata;extern int end, _end;.ft R.fi.SH DESCRIPTIONThese names refer neither to routines nor to locations with interestingcontents. The address of.B etextis the first address above the program text,.B edataabove the initialized data region, and.B endabove the uninitialized data region..B _endis the same as.BR end ,but in the implementers name space, i.e. for use in libraries..PPWhen execution begins, the program break coincides with.BR end ,but it is reset by the routines.BR brk (2),.BR malloc (3), standard input/output.RB ( stdio (3)),etc.The current value of the program break is reliably returned by `sbrk(0)',see.BR brk (2)..SH "SEE ALSO".BR brk (2),.BR malloc (3).
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?