We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Beyond the functions mentioned in #50 for tab completion, other undocumented functions are:
mdb_aread()
mdb_awrite()
mdb_symbol_iter()
#define
mdb_getareg()
mdb_object_iter()
mdb_ffs()
mdb_get_state()
MDB_STATE_IDLE
MDB_STATE_RUNNING
MDB_STATE_STOPPED
MDB_STATE_UNDEAD
MDB_STATE_DEAD
MDB_STATE_LOST
mdb_callback_add()
mdb_callback_remove()
MDB_CALLBACK_STCHG
MDB_CALLBACK_PROMPT
Additionally, there are two exported symbols that should probably be documented:
mdb_prop_kernel
mdb_prop_postmortem
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Beyond the functions mentioned in #50 for tab completion, other undocumented functions are:
mdb_aread()
/mdb_awrite()
(added in illumos#3946)mdb_symbol_iter()
(added in illumos#3985; a number of new#define
s were added for this, and should also be documented)mdb_getareg()
/mdb_object_iter()
(added in 6935550)mdb_ffs()
(added in 6456379, to provide an ffs(3C)-like mechanism)mdb_get_state()
, which returns one of:MDB_STATE_IDLE
, target is idle (not running yet)MDB_STATE_RUNNING
, target is currently executingMDB_STATE_STOPPED
, Target is stoppedMDB_STATE_UNDEAD
, Target is undead (zombie)MDB_STATE_DEAD
, target is dead (core dump)MDB_STATE_LOST
, target lost by debuggermdb_callback_add()
/mdb_callback_remove()
, which allow adding and removing callbacks, which will be called either:MDB_CALLBACK_STCHG
)MDB_CALLBACK_PROMPT
)Additionally, there are two exported symbols that should probably be documented:
mdb_prop_kernel
, "are we looking at a kernel?"mdb_prop_postmortem
, "are we looking at a static dump?"The text was updated successfully, but these errors were encountered: