Prev: Renaming USB drivers
Next: USB Port Reset
From: Carey McMaster on 4 Jan 2007 17:29 This does not work in 6000. I called MSDN hotline and the support guy reproduced it as well. Has not gotten back to me on it yet. Lost touch after the wind storm in Redmond. I will ping again early next week. -cm <hq4000(a)hotmail.com> wrote in message news:1164034848.831340.177580(a)f16g2000cwb.googlegroups.com... >I am using TraceView 2.1.1 from Vista DDK RTM Release 6000. My > problem is not sure how to prepare the Kernel driver, mykernel.sys, to > generate the mykernel.pdb for TraceView. As now, when I try to Create > New Log Session through PDB File, I would get an error message of, > "Cannot find PDB file". > > Can anyone help? If possible, please include a link. I also tried the > older version TraceView from DDK Windows 2003 SP1 (3790.1380), it > failed with same result. By the way, I spent some time searching the > MSDN without success. >
From: Don Burn on 4 Jan 2007 17:51 You might try posting this at http://www.osronline.com on NTDEV, since OSR developed TraceView (and I believe mantain it) for Microsoft. -- Don Burn (MVP, Windows DDK) Windows 2k/XP/2k3 Filesystem and Driver Consulting http://www.windrvr.com Remove StopSpam from the email to reply "Carey McMaster" <mcmaster(a)stargen.com> wrote in message news:%23K$5R$EMHHA.4376(a)TK2MSFTNGP03.phx.gbl... > This does not work in 6000. I called MSDN hotline and the support guy > reproduced it as well. Has not gotten back to me on it yet. Lost touch > after the wind storm in Redmond. I will ping again early next week. > > -cm > > > <hq4000(a)hotmail.com> wrote in message > news:1164034848.831340.177580(a)f16g2000cwb.googlegroups.com... >>I am using TraceView 2.1.1 from Vista DDK RTM Release 6000. My >> problem is not sure how to prepare the Kernel driver, mykernel.sys, to >> generate the mykernel.pdb for TraceView. As now, when I try to Create >> New Log Session through PDB File, I would get an error message of, >> "Cannot find PDB file". >> >> Can anyone help? If possible, please include a link. I also tried the >> older version TraceView from DDK Windows 2003 SP1 (3790.1380), it >> failed with same result. By the way, I spent some time searching the >> MSDN without success. >> > >
From: Eliyas Yakub [MSFT] on 4 Jan 2007 20:44 You get this error if the PDB file doesn't contain any trace information. Run tracepdb.exe on your PDB file and see what it says. I built the toaster\func\feature2 sample and loaded in traceview and it worked fine. This is the output I got when I ran tracepdb.exe on the PDB file to manually extract the TMF files: $tracepdb -f toaster.pdb -p tmf Microsoft (R) TracePDB.Exe (6.0.5253.0) Microsoft Corporation. All rights reserved. tracepdb : info BNP0000: WPPFMT generating tmf\e4dc3323-5a66-4e9d-0839-21a46853f 319.tmf for toaster.pdb tracepdb : info BNP0000: WPPFMT generating tmf\85ac9710-6a7f-7c9d-b46d-673e979d7 094.tmf for toaster.pdb tracepdb : info BNP0000: WPPFMT generating tmf\dbdb84b4-a307-1702-6764-b1bdd2d2f 92a.tmf for toaster.pdb tracepdb : info BNP0000: WPPFMT generating tmf\224e82fb-f4e6-84f4-f30d-cac330c08 635.tmf for toaster.pdb tracepdb : info BNP0000: WPPFMT generating tmf\224e82fb-f4e6-84f4-f30d-cac330c08 635.tmf for toaster.pdb -Eliyas
From: Carey McMaster on 5 Jan 2007 12:29 Eliyas, I get this when I build the toaster\func\featured ========================================================= C:\WinDDK\6000\src\kmdf\toaster\func\featured\objchk_wxp_x86\i386>tracepdb -f wdffeatured.pdb tmf Microsoft (R) TracePDB.Exe (6.0.6000.16386) ? Microsoft Corporation. All rights reserved. Functionality for Extracting TMF out of PDB file not availalbe UPDATE your DEBUGGER and use that DBGHELP.dll ========================================================= Suggestions?? thanks, -cm C:\WinDDK\6000\src\kmdf\toaster\func\featured\objchk_wxp_x86\i386> "Eliyas Yakub [MSFT]" <eliyasy(a)online.microsoft.com> wrote in message news:OFK1SsGMHHA.5064(a)TK2MSFTNGP04.phx.gbl... > You get this error if the PDB file doesn't contain any trace information. > > Run tracepdb.exe on your PDB file and see what it says. > > I built the toaster\func\feature2 sample and loaded in traceview and it > worked fine. > > > This is the output I got when I ran tracepdb.exe on the PDB file to > manually extract the TMF files: > > $tracepdb -f toaster.pdb -p tmf > > Microsoft (R) TracePDB.Exe (6.0.5253.0) > Microsoft Corporation. All rights reserved. > > tracepdb : info BNP0000: WPPFMT generating > tmf\e4dc3323-5a66-4e9d-0839-21a46853f > 319.tmf for toaster.pdb > tracepdb : info BNP0000: WPPFMT generating > tmf\85ac9710-6a7f-7c9d-b46d-673e979d7 > 094.tmf for toaster.pdb > tracepdb : info BNP0000: WPPFMT generating > tmf\dbdb84b4-a307-1702-6764-b1bdd2d2f > 92a.tmf for toaster.pdb > tracepdb : info BNP0000: WPPFMT generating > tmf\224e82fb-f4e6-84f4-f30d-cac330c08 > 635.tmf for toaster.pdb > tracepdb : info BNP0000: WPPFMT generating > tmf\224e82fb-f4e6-84f4-f30d-cac330c08 > 635.tmf for toaster.pdb > > -Eliyas >
From: Eliyas Yakub [MSFT] on 5 Jan 2007 13:33
You get this error if the dbghelp.dll doesn't have SymSearch function exported. Can you check your dgbhelp.dll to see if it exports this function? This how you check for it. C:\WinDDK\6000\tools\tracing\i386>link /dump /exports C:\WinDDK\6000\bin\x86\dbghelp.dll | findstr SymSearch 145 90 00037E40 SymSearch 146 91 00037EB0 SymSearchW -Eliyas |