1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-12-23 03:53:43 +01:00

Add missing backslashes.

(Logical change 1.240)
This commit is contained in:
(none)!davidm 2004-08-05 08:59:57 +00:00
parent c6a529d390
commit ad728f97cd
4 changed files with 8 additions and 10 deletions

View file

@ -13,7 +13,7 @@
\File{\#include $<$libunwind-ptrace.h$>$}\\ \File{\#include $<$libunwind-ptrace.h$>$}\\
\noindent \noindent
\Type{unw\_accessors\_t} \Var{_UPT\_accessors};\\ \Type{unw\_accessors\_t} \Var{\_UPT\_accessors};\\
\Type{void~*}\Func{\_UPT\_create}(\Type{pid\_t});\\ \Type{void~*}\Func{\_UPT\_create}(\Type{pid\_t});\\
\noindent \noindent
@ -32,7 +32,7 @@
\noindent \noindent
\Type{int} \Func{\_UPT\_access\_fpreg}(\Type{unw\_addr\_space\_t}, \Type{unw\_regnum\_t}, \Type{unw\_fpreg\_t~*}, \Type{int}, \Type{void~*});\\ \Type{int} \Func{\_UPT\_access\_fpreg}(\Type{unw\_addr\_space\_t}, \Type{unw\_regnum\_t}, \Type{unw\_fpreg\_t~*}, \Type{int}, \Type{void~*});\\
\noindent \noindent
\Type{int} \Func{\_UPT\_get\_proc\_name}(\Type{unw\_addr\_space\_t}, \Type{unw\_word\_t}, \Type{char~*}, \Type{size\_t}, \Type{unw_word_t~*}, \Type{void~*});\\ \Type{int} \Func{\_UPT\_get\_proc\_name}(\Type{unw\_addr\_space\_t}, \Type{unw\_word\_t}, \Type{char~*}, \Type{size\_t}, \Type{unw\_word\_t~*}, \Type{void~*});\\
\noindent \noindent
\Type{int} \Func{\_UPT\_resume}(\Type{unw\_addr\_space\_t}, \Type{unw\_cursor\_t~*}, \Type{void~*});\\ \Type{int} \Func{\_UPT\_resume}(\Type{unw\_addr\_space\_t}, \Type{unw\_cursor\_t~*}, \Type{void~*});\\

View file

@ -23,7 +23,7 @@ The call-back routines are described in detail below. The
\Var{byteorder} can be set to 0 to request the default byte-order of \Var{byteorder} can be set to 0 to request the default byte-order of
the unwind target. To request a particular byte-order, the unwind target. To request a particular byte-order,
\Var{byteorder} can be set to any constant defined by \Var{byteorder} can be set to any constant defined by
\File{$<$endian.h$>$}. In particular, \Const{\_\_LITTLE_ENDIAN} would \File{$<$endian.h$>$}. In particular, \Const{\_\_LITTLE\_ENDIAN} would
request little-endian byte-order and \Const{\_\_BIG\_ENDIAN} would request little-endian byte-order and \Const{\_\_BIG\_ENDIAN} would
request big-endian byte-order. Whether or not a particular byte-order request big-endian byte-order. Whether or not a particular byte-order
is supported depends on the target platform. is supported depends on the target platform.
@ -194,7 +194,7 @@ execution in the target address space. Argument \Var{cp} is the
unwind-cursor that identifies the stack-frame in which execution unwind-cursor that identifies the stack-frame in which execution
should resume. By the time \Prog{libunwind} invokes the \Func{resume} should resume. By the time \Prog{libunwind} invokes the \Func{resume}
call-back, it has already established the desired machine- and call-back, it has already established the desired machine- and
memory-state via calls to the \Func{access_reg}(), memory-state via calls to the \Func{access\_reg}(),
\Func{access\_fpreg}, and \Func{access\_mem}() call-backs. Thus, all \Func{access\_fpreg}, and \Func{access\_mem}() call-backs. Thus, all
the call-back needs to do is perform whatever action is needed to the call-back needs to do is perform whatever action is needed to
actually resume execution. actually resume execution.
@ -216,9 +216,9 @@ obtain the procedure-name of a static (not dynamically generated)
procedure. Argument \Var{addr} is an instruction-address within the procedure. Argument \Var{addr} is an instruction-address within the
procedure whose name is to be obtained. The \Var{bufp} argument is a procedure whose name is to be obtained. The \Var{bufp} argument is a
pointer to a character-buffer used to return the procedure name. The pointer to a character-buffer used to return the procedure name. The
size of this buffer is specified in argument \Var{buf_len}. The size of this buffer is specified in argument \Var{buf\_len}. The
returned name must be terminated by a NUL character. If the returned name must be terminated by a NUL character. If the
procedure's name is longer than \Var{buf_len} bytes, it must be procedure's name is longer than \Var{buf\_len} bytes, it must be
truncated to \Var{buf\_len}\Prog{-1} bytes, with the last byte in the truncated to \Var{buf\_len}\Prog{-1} bytes, with the last byte in the
buffer set to the NUL character and -\Const{UNW\_ENOMEM} must be buffer set to the NUL character and -\Const{UNW\_ENOMEM} must be
returned. Argument \Var{offp} is a pointer to a word which is used to returned. Argument \Var{offp} is a pointer to a word which is used to
@ -245,8 +245,6 @@ address-space. Otherwise, \Const{NULL} is returned.
\Func{unw\_create\_addr\_space}() is thread-safe but \emph{not} \Func{unw\_create\_addr\_space}() is thread-safe but \emph{not}
safe to use from a signal handler. safe to use from a signal handler.
\end{Description}
\section{See Also} \section{See Also}
\SeeAlso{\_U\_dyn\_register(3)}, \SeeAlso{\_U\_dyn\_register(3)},

View file

@ -47,7 +47,7 @@ following members:
obtained for some reason. \\ obtained for some reason. \\
\item[\Type{unw\_word\_t} \Var{flags}] A set of flags. There are \item[\Type{unw\_word\_t} \Var{flags}] A set of flags. There are
currently no target-independent flags. For the IA-64 target, the currently no target-independent flags. For the IA-64 target, the
flag \Const{UNW_PI_FLAG_IA64_RBS_SWITCH} is set if the flag \Const{UNW\_PI\_FLAG\_IA64\_RBS\_SWITCH} is set if the
procedure may switch the register-backing store.\\ procedure may switch the register-backing store.\\
\item[\Type{int} \Var{format}] The format of the unwind-info for this \item[\Type{int} \Var{format}] The format of the unwind-info for this
procedure. If the unwind-info consists of dynamic procedure info, procedure. If the unwind-info consists of dynamic procedure info,

View file

@ -12,7 +12,7 @@
\File{\#include $<$libunwind.h$>$}\\ \File{\#include $<$libunwind.h$>$}\\
\Type{int} \Func{unw\_set\_caching\_policy}(\Type{unw\_addr\_space\_t} \Var{as}, \Type{unw\_caching_policy\_t} \Var{policy});\\ \Type{int} \Func{unw\_set\_caching\_policy}(\Type{unw\_addr\_space\_t} \Var{as}, \Type{unw\_caching\_policy\_t} \Var{policy});\\
\section{Description} \section{Description}