singrdk/base/Windows/singx86
Lily Tsuru db9d77760c RDK 2.0 2024-05-24 07:44:53 -04:00
..
Documentation.cmd RDK 1.1 2024-05-24 07:43:45 -04:00
GCLog.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
Readme.txt RDK 2.0 2024-05-24 07:44:53 -04:00
apic.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
bytev.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
charv.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
crashdump.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
diagdump.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
diagnose.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
diagnose.h RDK 2.0 2024-05-24 07:44:53 -04:00
help.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
ioapic.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
log.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
object.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
precomp.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
procs.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
res.inl RDK 2.0 2024-05-24 07:44:53 -04:00
sample.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
singext.common.proj RDK 2.0 2024-05-24 07:44:53 -04:00
singx64.proj RDK 2.0 2024-05-24 07:44:53 -04:00
singx86.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
singx86.def RDK 2.0 2024-05-24 07:44:53 -04:00
singx86.h RDK 2.0 2024-05-24 07:44:53 -04:00
singx86.proj RDK 2.0 2024-05-24 07:44:53 -04:00
singx86.rc RDK 2.0 2024-05-24 07:44:53 -04:00
sips.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
stack.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
structs.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
thread.cpp RDK 2.0 2024-05-24 07:44:53 -04:00
threads.cpp RDK 2.0 2024-05-24 07:44:53 -04:00

Readme.txt

The Singularity Debugger Extensions use the Debugger Interface for
the Microsoft(R) Debugging Tools for Windows(R).  The Debugger Interface
is also known as dbgeng.

The dbgeng files, dbgeng.h and dbgeng.lig, come straight from the
Microsoft-internal Debugger distribution.

The objbase.h file was hand crafted to minimize the cruft
imported by the standard Windows objbase.h (12KB vs. 1MB).

To add a new command, you need to:
1) Create a the new function.
2) Add descriptive text to help.cpp
3) Add an export entry to singx86.def.

Windbg supports dynamic load and unloading of extensions.
Type ".unload singx86" at the windbg command prompt to unload it.
Type ".load singx86" at the windbg command prompt to load it.

The code for the debuggers can be found in the Microsoft-internal
Windows source tree.