Provided by:
freebsd-manpages_7.0-2_all 
NAME
stack - kernel thread stack tracing routines
SYNOPSIS
#include <sys/param.h>>
#include <sys/stack.h>
In kernel configuration files:
options DDB
struct stack *
stack_create(void);
void
stack_destroy(struct stack *st);
int
stack_put(struct stack *st, vm_offset_t pc);
void
stack_copy(struct stack *src, struct stack dst);
void
stack_zero(struct stack *st);
void
stack_print(struct stack *st);
void
stack_sbuf_print(struct sbuf sb*, struct stack *st);
void
stack_save(struct stack *st);
DESCRIPTION
The stack KPI allows querying of kernel stack trace information and the
automated generation of kernel stack trace strings for the purposes of
debugging and tracing. stack relies on the presence of DDB(4), and all
use of these functions must be made conditional on DDB being compiled in
the kernel.
Each stack trace is described by a struct stack. Before a trace may be
created or otherwise manipulated, storage for the trace must be allocated
with stack_create(), which may sleep. Memory associated with a trace may
be freed by calling stack_destroy().
A trace of the current kernel thread’s call stack may be captured using
stack_save().
stack_print() may be used to print a stack trace using the kernel
printf(9).
stack_sbuf_print() may be used to construct a human-readable string,
including conversion (where possible) from a simple kernel instruction
pointer to a named symbol and offset. The argument sb must be an
initialized struct sbuf as described in sbuf(9). This function may sleep
if an auto-extending struct sbuf is used.
The utility functions stack_zero, stack_copy, and stack_put may be used
to manipulate stack data structures directly.
SEE ALSO
DDB(4), printf(9), sbuf(9)
AUTHORS
The stack(9) function suite was created by Antoine Brodin.
This manual page was written by Robert Watson.