-
Notifications
You must be signed in to change notification settings - Fork 2
/
dl.tex
63 lines (54 loc) · 1.64 KB
/
dl.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
%%% vim:ai:tw=72:
\chapter{Program Loading and Dynamic Linking}
\section{Program header}
The following \xOS program header types are defined:
\begin{table}[H]
\Hrule
\caption{Program Header Types}
\begin{center}
\begin{tabular}[t]{l|l}
\multicolumn{1}{c}{Name} & \multicolumn{1}{c}{Value} \\
\hline
\texttt{PT_GNU_EH_FRAME} & \texttt{0x6474e550} \\
\texttt{PT_GNU_PROPERTY} & \texttt{0x6474e553} \\
\end{tabular}
\end{center}
\Hrule
\end{table}
\begin{description}
\item[PT_GNU_EH_FRAME]
The segment contains \texttt{.eh_frame_hdr} section. See
Section~\ref{sec_eh_frame_hdr} of this document.
\item[PT_GNU_PROPERTY]
The segment contains \texttt{.note.gnu.property} section. See
Section~\ref{sec_property} of this document.
\end{description}
\section{Note Section}
The following note descriptor types are defined:
\begin{table}[H]
\Hrule
\caption{Note Descriptor Types}
\begin{center}
\begin{tabular}[t]{l|l}
\multicolumn{1}{c}{Name} & \multicolumn{1}{c}{Value} \\
\hline
\texttt{NT_GNU_ABI_TAG} & \texttt{1} \\
\texttt{NT_GNU_BUILD_ID} & \texttt{3} \\
\texttt{NT_GNU_PROPERTY_TYPE_0} & \texttt{5} \\
\end{tabular}
\end{center}
\Hrule
\end{table}
\begin{description}
\item[NT_GNU_ABI_TAG]
The ABI tag note. See Section~\ref{sec_abi_tag} of this document.
\item[NT_GNU_BUILD_ID]
The build ID note. See Section~\ref{sec_build_id} of this document.
\item[NT_GNU_PROPERTY_TYPE_0]
The program property note. See Section~\ref{sec_property} of this
document.
\end{description}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: "abi"
%%% End: