.\" Copyright (c) 2008, Linux Foundation, written by by Michael Kerrisk .\" .\" .\" Permission is granted to make and distribute verbatim copies of this .\" manual provided the copyright notice and this permission notice are .\" preserved on all copies. .\" .\" Permission is granted to copy and distribute modified versions of this .\" manual under the conditions for verbatim copying, provided that the .\" entire resulting derived work is distributed under the terms of a .\" permission notice identical to this one .\" .\" Since the Linux kernel and libraries are constantly changing, this .\" manual page may be incorrect or out-of-date. The author(s) assume no .\" responsibility for errors or omissions, or for damages resulting from .\" the use of the information contained herein. The author(s) may not .\" have taken the same level of care in the production of this manual, .\" which is licensed free of charge, as they might when working .\" professionally. .\" .\" Formatted or processed versions of this manual, if unaccompanied by .\" the source, must acknowledge the copyright and authors of this work. .\" License. .\" .\" Japanese Version Copyright (c) 2008 Akihiro MOTOKI .\" all rights reserved. .\" Translated 2008-08-21, Akihiro MOTOKI , LDP v3.05 .\" .TH END 3 2008-07-17 "GNU" "Linux Programmer's Manual" .\"O .SH NAME .SH 名前 .\"O etext, edata, end \- end of program segments etext, edata, end \- プログラムセグメントの終わり .\"O .SH SYNOPSIS .SH 書式 .nf .BI extern " etext" ; .BI extern " edata" ; .BI extern " end" ; .fi .\"O .SH DESCRIPTION .SH 説明 .\"O The addresses of these symbols indicate the end of various program .\"O segments: これらのシンボルのアドレスは各種のプログラムセグメントの終わりを示す。 .TP .I etext .\"O This is the first address past the end of the text segment .\"O (the program code). テキストセグメント (プログラムのコード) の末尾の次のアドレス。 .TP .I edata .\"O This is the first address past the end of the .\"O initialized data segment. 初期化されたデータのセグメントの末尾の次のアドレス。 .TP .I end .\"O This is the first address past the end of the .\"O uninitialized data segment (also known as the BSS segment). 初期化されていないデータのセグメント (BSS セグメントとも言われる) の末尾の次のアドレス。 .\"O .SH CONFORMING TO .SH 準拠 .\"O Although these symbols have long been provided on most UNIX systems, .\"O they are not standardized; use with caution. これらのシンボルは長年ほとんどの UNIX システムで提供されているが、 標準化されてはいない。注意して使うこと。 .\"O .SH NOTES .SH 注意 .\"O The program must explicitly declare these symbols; .\"O they are not defined in any header file. プログラムではこれらのシンボルは明示的に宣言しなければならない。 これらはどのヘッダファイルでも定義されていない。 .\"O On some systems the names of these symbols are preceded by underscores, .\"O thus: .\"O .IR _etext , .\"O .IR _edata , .\"O and .\"O .IR _end . .\"O These symbols are also defined for programs compiled on Linux. いくつかのシステムでは、これらのシンボルの名前は前にアンダースコアが 付いていて、 .IR _etext , .IR _edata , .I _end となっている。 Linux でコンパイルされたプログラムでは、 これらのシンボルでも定義される。 .\"O At the start of program execution, .\"O the program break will be somewhere near .\"O .IR &end .\"O (perhaps at the start of the following page). .\"O However, the break will change as memory is allocated via .\"O .BR brk (2) .\"O or .\"O .BR malloc (3). .\"O Use .\"O .BR sbrk (2) .\"O with an argument of zero to find the current value of the program break. プログラムの実行開始時に、プログラム・ブレークは .I &end の近くのどこか (おそらく次のページの先頭) になる。 しかしながら、 .BR brk (2) や .BR malloc (3) でメモリが割り当てられるに連れて、プログラム・ブレークは変化していく。 引き数に 0 を指定して .BR sbrk (2) を呼び出すことで、プログラム・ブレークの現在値を知ることができる。 .\"O .SH EXAMPLE .SH 例 .\"O When run, the program below produces output such as the following: 下記のプログラムを実行すると、次のような出力が得られる。 .in +4n .nf .RB "$" " ./a.out" First address past: program text (etext) 0x8048568 initialized data (edata) 0x804a01c uninitialized data (end) 0x804a024 .fi .\"O .SS Program source .SS プログラムのソース \& .in .nf #include #include extern char etext, edata, end; /* The symbols must have some type, or "gcc -Wall" complains */ int main(int argc, char *argv[]) { printf("First address past:\\n"); printf(" program text (etext) %10p\\n", &etext); printf(" initialized data (edata) %10p\\n", &edata); printf(" uninitialized data (end) %10p\\n", &end); exit(EXIT_SUCCESS); } .fi .\"O .SH "SEE ALSO" .SH 関連項目 .BR objdump (1), .BR readelf (1), .BR sbrk (2), .BR elf (5)