Actually, it sounds like you have it setup more or less correctly, at
least as far as I can tell. What you are missing is one of the
following to break in to the debugger:
- Press Ctrl+Break
-OR-
- Select “Break” from the Debug Menu
-OR-
- Click the Icon that looks like “Pause”
- Start WinDbg with -b -d
- Add /BREAK to the target’s Boot.INI configuration
For the moment, just Press Ctrl+Break (1). You should see a command
prompt at the bottom of the command window. When it appears, make sure
you have your symbol path set:
!sym noisy
.sympath srv*c:\symbols*http://msdl.microsoft.com/download/symbols
.reload -f -n
lml
c:\symbols can be replaced with any local folder that you wish to use a
symbol cache.
These take a while. The lml should produce a list of modules that have
symbols loaded. If nt (ntoskrnl/ntkrnlmp/…) does not have symbols
loaded or just export symbols loaded something is amiss.
mm
>> xxxxx@yahoo.com 2007-03-27 00:37 >>>
Hi,
I am new to system programming and debugging.
I studied many sites and by following
http://www.vmware.com/support/gsx3/…_debug_gsx.html
I installed WinXP SP2 as target operating system in VM ware and
configured the Serial port COM1 on the target system
now when i run the command from Host system (also WINXP SP3)
C:/WINDBG> windbg -k com: port=\.\pipe\COM1,pipe
WinDBG opens the COM1 port but next to it, it says
Waiting to reconnect …
Later to it there is no response
how can i debug the driver or sys file?
Can you kindly guide me through steps.
I will be really really thankful to you.
Regards,
Questions? First check the Kernel Driver FAQ at
http://www.osronline.com/article.cfm?id=256
To unsubscribe, visit the List Server section of OSR Online at
http://www.osronline.com/page.cfm?name=ListServer