Difference between revisions of "WinDBG"

From ReactOS Wiki
Jump to: navigation, search
(Online reference)
(Useful commands)
Line 9: Line 9:
 
! description
 
! description
 
|-
 
|-
| ta || trace to address;
+
|ta || trace to address;
 
|-
 
|-
| x *! || full modules list (atm lm is only showing basic modules);
+
|x *! || full modules list (atm lm is only showing basic modules);
 
|-
 
|-
| !gflag +soe || catch all exceptions (first exception handling) apart from STATUS_PORT_DISCONNECTED or if the exception code is not an error code;
+
|!process 0 0 || list all process with basic info;
 
|-
 
|-
| .reload /user || reloads user symbols and enables resolving of usermode
+
|!process || list detailed info of attached process, with its threads;
 +
|-
 +
|!gflag +soe || catch all exceptions (first exception handling) apart from STATUS_PORT_DISCONNECTED or if the exception code is not an error code;
 +
|-
 +
|.process <addr> || attach to the process of a given address;
 +
|-
 +
|.reload /user || reloads user symbols and enables resolving of usermode
 +
|-
 +
|.thread <addr> || attach to the thread of a given address;
 
|}
 
|}

Revision as of 22:49, 29 October 2011

Online reference

http://msdn.microsoft.com/en-us/library/ff540507.aspx

http://www.osronline.com/ddkx/ddtools/gflags_7u5v.htm

Useful commands

command description
ta trace to address;
x *! full modules list (atm lm is only showing basic modules);
!process 0 0 list all process with basic info;
!process list detailed info of attached process, with its threads;
!gflag +soe catch all exceptions (first exception handling) apart from STATUS_PORT_DISCONNECTED or if the exception code is not an error code;
.process <addr> attach to the process of a given address;
.reload /user reloads user symbols and enables resolving of usermode
.thread <addr> attach to the thread of a given address;