Содержащиеся вНайти другие документыРесурсы поддержки | Загрузить это руководство в формате PDF (3779 КБ)
etext(3C)Name | Synopsis | Description | Usage | See Also Name
Synopsisextern int _etext; extern int _edata; extern int _end; Description
These names refer neither to routines nor to locations with interesting contents; only their addresses are meaningful. UsageWhen execution begins, the program break (the first location beyond the data) coincides with _end, but the program break can be reset by the brk(2), malloc(3C), and the standard input/output library (see stdio(3C)), functions by the profile (-p) option of cc(1B), and so on. Thus, the current value of the program break should be determined by sbrk ((char *)0). References to end, etext, and edata, without a preceding underscore will be aliased to the associated symbol that begins with the underscore. See AlsoSunOS 5.10 Last Revised 31 Mar 2006Name | Synopsis | Description | Usage | See Also |