Start profiling an application from command prompt
Start profiling an application from command prompt
Dear,
I have an application(.exe) that start from a script along with other processes.
Is it possible to launc .NET memory profiler from that script with the arguments my application uses ?
Where can I find some information on how to do this ?
Thank you
I have an application(.exe) that start from a script along with other processes.
Is it possible to launc .NET memory profiler from that script with the arguments my application uses ?
Where can I find some information on how to do this ?
Thank you
-
- Posts: 1029
- Joined: Wed Mar 02, 2005 7:53 pm
Re: Start profiling an application from command prompt
Yes, you can launch .NET Memory Profiler from the script, which in turn will start your application. There are three different programs you can use to start .NET Memory Profiler: NetMemProfiler.exe, NetMemProfilerConsole.exe, and NmpCore.exe.
NetMemProfiler.exe is the normal standalone profiler. NetMemProfilerConsole.exe is the console version of the profiler and is designed to run automated tests using profiler assertions. It will not show the profiler user interface unless an assertion fails. NmpCore is a standalone executable (no installation is required) that can also be used to automate testing in a script. It optionally includes a simple user interface. To profile your application, you can use the following command line:
For more information, see the online documentation about how to start .NET Memory Profiler and NmpCore.
NetMemProfiler.exe is the normal standalone profiler. NetMemProfilerConsole.exe is the console version of the profiler and is designed to run automated tests using profiler assertions. It will not show the profiler user interface unless an assertion fails. NmpCore is a standalone executable (no installation is required) that can also be used to automate testing in a script. It optionally includes a simple user interface. To profile your application, you can use the following command line:
Code: Select all
NetMemProfiler[Console].exe [options] [<executable to profile>] [<arguments for the profiled process>]
Best regards,
Andreas Suurkuusk
SciTech Software AB
Andreas Suurkuusk
SciTech Software AB
Re: Start profiling an application from command prompt
Hi,
Thank you.
I have tried this(now) but I encountered another obstacle.
The profiler immediatly stops with the message :
"The profiled process has been terminated".
The process has no problem running in production. No exceptions.
I have searched for logs of .NET memory profiler for more info but can't find them.
Where do I find logs/traces ? How do I get it running ?
Kind Regards
Thank you.
I have tried this(now) but I encountered another obstacle.
The profiler immediatly stops with the message :
"The profiled process has been terminated".
The process has no problem running in production. No exceptions.
I have searched for logs of .NET memory profiler for more info but can't find them.
Where do I find logs/traces ? How do I get it running ?
Kind Regards
-
- Posts: 1029
- Joined: Wed Mar 02, 2005 7:53 pm
Re: Start profiling an application from command prompt
How did you start profiling the application? Using NetMemProfiler, NetMemProfilerConsole or NmpCore?
If you are using NetMemProfiler or NetMemProfilerConsole, you can supply the /log:<path> command line argument to create log-files. E.g.
This will create a set of log-files in the c:\MemProfilerLogs folder. The logs will hopefully provide some information about what the problem is.
Have you managed to profile the application using the normal profiler application (i.e. not using the command line)?
If you are using NetMemProfiler or NetMemProfilerConsole, you can supply the /log:<path> command line argument to create log-files. E.g.
Code: Select all
NetMemProfilerConsole /log:c:\MemProfilerLogs /p <path to executable> <additional arguments>
Have you managed to profile the application using the normal profiler application (i.e. not using the command line)?
Best regards,
Andreas Suurkuusk
SciTech Software AB
Andreas Suurkuusk
SciTech Software AB
Re: Start profiling an application from command prompt
Hi,
Thanks for the reply.
I will try with the logging.
I get the same result when trying to launch the profiling via the .Net Memory Profiler GUI.
Kind Regards
Thanks for the reply.
I will try with the logging.
I get the same result when trying to launch the profiling via the .Net Memory Profiler GUI.
Kind Regards
Re: Start profiling an application from command prompt
Dear,
Here are the Client logs :
Can you help me with this ? Thank you.
Kind Regards
Here are the Client logs :
Can you help me with this ? Thank you.
- 2013-03-26 10:24:53.1722|1|INFO|SciTech.Profiler.ProfilerApplicationCore|ProfilerApplicationCore.ctor enter
2013-03-26 10:24:53.1878|1|INFO|SciTech.Profiler.NativeLibraries|Loading native libraries
2013-03-26 10:24:53.1878|1|INFO|SciTech.Profiler.ProfilerFolders|Getting native base path
2013-03-26 10:24:53.1878|1|INFO|SciTech.Profiler.ProfilerFolders|Returning native base path: C:\Program Files\SciTech\NetMemProfiler4\32Bit
2013-03-26 10:24:53.1878|1|INFO|SciTech.Profiler.DebuggingTools|ValidateDbgEngFolder: 'C:\Program Files\Debugging Tools for Windows (x86)' for 32bit
2013-03-26 10:24:53.2034|1|INFO|SciTech.Profiler.DebuggingTools|DbgEng folder 'C:\Program Files\Debugging Tools for Windows (x86)' validated.
2013-03-26 10:24:53.2034|1|WARN|SciTech.Profiler.ProfilerApplicationCore|Failed to load default filters
2013-03-26 10:24:53.2034|1|INFO|SciTech.Profiler.ProfilerApplicationCore|ProfilerApplicationCore.ctor leave
2013-03-26 10:24:53.4065|1|INFO|SciTech.UI.Plots.PlotControl|.ctor enter
2013-03-26 10:24:53.4534|1|INFO|SciTech.UI.Plots.PlotControl|.ctor leave
2013-03-26 10:24:54.0940|1|INFO|SciTech.NetMemProfiler.Controls.FillDockManager|Loading dock layout from 'C:\Profiles\EBSB002T\Local Settings\Application Data\SciTech\MemProfiler4\Layout\TypeDetails.docklayout'
2013-03-26 10:24:54.2346|1|INFO|SciTech.NetMemProfiler.Controls.FillDockManager|Dock layout loaded
2013-03-26 10:24:54.3128|1|INFO|SciTech.NetMemProfiler.ProfilerMainForm|Restoring form geometry
2013-03-26 10:24:54.3128|1|INFO|SciTech.NetMemProfiler.Properties.NetMemProfilerStandaloneSettingsProvider|AppSettingsPath: C:\Profiles\EBSB002T\Local Settings\Application Data\SciTech\MemProfiler4
2013-03-26 10:24:54.6096|1|INFO|SciTech.NetMemProfiler.Controls.TasksContainerView|Restoring dock layout: C:\Profiles\EBSB002T\Local Settings\Application Data\SciTech\MemProfiler4\DockWindowsLayout.xml
2013-03-26 10:24:54.6878|1|INFO|SciTech.NetMemProfiler.Controls.TasksContainerView|Dock layout restored
2013-03-26 10:24:54.6878|1|INFO|SciTech.NetMemProfiler.ProfilerMainForm|Restoring main view layout
2013-03-26 10:24:54.6878|1|INFO|SciTech.NetMemProfiler.Controls.TypeInstanceDetailsControl|Restoring ITypeInstanceDetailsView layout
2013-03-26 10:24:54.6878|1|INFO|SciTech.NetMemProfiler.Controls.TypeInstanceDetailsControl|Maximized panel
2013-03-26 10:24:54.6878|1|INFO|SciTech.NetMemProfiler.TypeDetailsControl|Restoring ITypeDetailsView layout
2013-03-26 10:24:54.6878|1|INFO|SciTech.NetMemProfiler.TypeDetailsControl|Maximized panel6163fbda-8fc7-44c3-95b0-f8ffabeb00ee
2013-03-26 10:24:54.7503|1|INFO|SciTech.NetMemProfiler.Controls.FillDockManager|Loading dock layout from 'C:\Profiles\EBSB002T\Local Settings\Application Data\SciTech\MemProfiler4\Layout\TypeDetailsMaximized.docklayout'
2013-03-26 10:24:54.7815|1|INFO|SciTech.NetMemProfiler.Controls.FillDockManager|Dock layout loaded
2013-03-26 10:24:57.0627|1|INFO|SciTech.Profiler.Memory.ProfilerComparison|New PrimarySession
2013-03-26 10:24:57.0627|1|INFO|SciTech.Profiler.Memory.InstanceHeap|ReleaseHeap begin, releaseMemory=True
2013-03-26 10:24:57.0627|1|INFO|SciTech.Profiler.Memory.InstanceHeap|ReleaseHeap end
2013-03-26 10:24:57.0783|1|INFO|SciTech.NetMemProfiler.Controls.TasksContainerView|Making panel visible
2013-03-26 10:24:57.1408|1|INFO|SciTech.NetMemProfiler.Controls.TasksContainerView|Panel made visible
2013-03-26 10:24:57.1721|1|INFO|SciTech.NetMemProfiler.StdProfilerMainView|StartProfiler enter
2013-03-26 10:24:57.1721|1|INFO|SciTech.Profiler.ActiveSession| StartAsync enter
2013-03-26 10:24:57.1721|1|INFO|SciTech.Profiler.ProfilerClient| Resetting cancel event in ResetCancel.
2013-03-26 10:24:57.1721|1|INFO|SciTech.Profiler.ProfilerClient| Cancel event reset in ResetCancel.
2013-03-26 10:24:57.1721|1|INFO|SciTech.Profiler.ActiveSession| StartAsync leave
2013-03-26 10:24:57.1721|5|INFO|SciTech.Profiler.ActiveSession|Starting profiled process.
2013-03-26 10:24:57.1721|5|INFO|SciTech.Profiler.ProfilerClient|Initializing pipes
2013-03-26 10:24:57.1721|5|INFO|SciTech.Internal.IO.ProfilerPipe|ProfilerPipe: 2208
2013-03-26 10:24:57.1721|5|INFO|SciTech.Internal.IO.ProfilerPipe|ProfilerPipe: 2212
2013-03-26 10:24:57.1721|5|INFO|SciTech.Internal.IO.ProfilerPipe|ProfilerPipe: 2216
2013-03-26 10:24:57.1721|5|INFO|SciTech.Profiler.ProfilerClient|Pipes initialized, pipeId=284be442-a12c-427b-b992-4e647c955735
2013-03-26 10:24:57.1721|5|INFO|SciTech.Profiler.ProfilerClient|StartApplicationProfiling enter
2013-03-26 10:24:57.1877|5|INFO|SciTech.Profiler.ProfilerClient| Starting process: C:\Program Files\Diebold\Agilis Power\Bin\Diebold.Agilis.Power.TaskSequencer.exe
2013-03-26 10:24:57.1877|5|INFO|SciTech.Profiler.ProfilerClient| Process started: 5452
2013-03-26 10:24:57.1877|5|INFO|SciTech.Profiler.ProfilerClient|StartApplicationProfiling leave
2013-03-26 10:24:57.1877|5|INFO|SciTech.Profiler.ProfilerClient|Profiled process started, waiting to connect
2013-03-26 10:24:57.1877|5|INFO|SciTech.Profiler.ProfilerClient|Waiting for connect
2013-03-26 10:24:57.3908|12|INFO|SciTech.Profiler.ProfilerFolders|Getting native base path
2013-03-26 10:24:57.3908|12|INFO|SciTech.Profiler.ProfilerFolders|Returning native base path: C:\Program Files\SciTech\NetMemProfiler4\32Bit
2013-03-26 10:24:57.3908|12|INFO|SciTech.Profiler.ProfilerFolders|Getting native base path
2013-03-26 10:24:57.3908|12|INFO|SciTech.Profiler.ProfilerFolders|Returning native base path: C:\Program Files\SciTech\NetMemProfiler4\32Bit
2013-03-26 10:25:43.2490|11|INFO|SciTech.Profiler.ProfilerClient|ProfilerConnected received.
2013-03-26 10:25:43.2803|11|INFO|SciTech.Profiler.ProfilerClient|RuntimeConnected received.
2013-03-26 10:25:43.2803|11|INFO|SciTech.Profiler.ProfilerSession|Adding runtime 1 v2.0.50727.3603
2013-03-26 10:25:43.2803|11|INFO|SciTech.Profiler.ProfilerClient|Setting connected event
2013-03-26 10:25:43.2803|1|INFO|SciTech.NetMemProfiler.Presenters.SnapshotSelector| activeSession_RuntimesChanged enter
2013-03-26 10:25:43.2803|1|INFO|SciTech.NetMemProfiler.Presenters.SnapshotSelector| activeSession_RuntimesChanged leave
2013-03-26 10:25:43.2803|5|INFO|SciTech.Profiler.ProfilerClient|Connect wait done
2013-03-26 10:25:43.2803|5|INFO|SciTech.Profiler.ProfilerClient|Profiled process connected
2013-03-26 10:25:43.2959|1|INFO|SciTech.NetMemProfiler.StdProfilerMainView|StartProfiler leave
2013-03-26 10:25:43.2959|5|INFO|SciTech.Profiler.Memory.ProfilerComparison|RetrieveSnapshotData enter
2013-03-26 10:25:43.2959|5|INFO|SciTech.Profiler.Memory.ProfilerComparison|RetrieveSnapshotData leave - SnapshotData already updated
2013-03-26 10:28:42.6209|11|ERROR|SciTech.Profiler.ProfilerClient|Exception caught in ReportListener:
System.IO.EndOfStreamException: Attempted to read past the end of the stream.
at b.QA.yG(Int32 )
at b.QA.rq()
at b.gR.yo(QJ )
at b.gK.TC()
2013-03-26 10:28:42.6209|12|ERROR|SciTech.Profiler.ProfilerClient|Exception caught in UnmanagedReportListener:
System.IO.EndOfStreamException: Attempted to read past the end of the stream.
at b.QA.yG(Int32 )
at b.QA.rq()
at b.gR.yo(QJ )
at b.gK.TN()
2013-03-26 10:28:42.6209|14|INFO|SciTech.Profiler.ProfilerClient|ProfilerClient.RequestStop entered, reason=ApplicationTerminated, error=
2013-03-26 10:28:42.6365|14|INFO|SciTech.Profiler.ProfilerClient|Setting event for wake-up in RequestStop
2013-03-26 10:28:42.6365|14|INFO|SciTech.Profiler.ProfilerClient|Wake-up event set in RequestStop
2013-03-26 10:28:42.6365|11|INFO|SciTech.Profiler.ProfilerClient|ProfilerClient.RequestStop entered, reason=ConnectionLost, error=Attempted to read past the end of the stream.
2013-03-26 10:28:42.6522|15|INFO|SciTech.Profiler.ActiveSession|Stopping profiled process.
2013-03-26 10:28:42.6522|15|INFO|SciTech.Profiler.ProfilerClient|ProfilerClient.Stop entered, reason=ApplicationTerminated, error=
2013-03-26 10:28:42.6522|15|INFO|SciTech.Profiler.ProfilerClient|Setting event for wake-up in Stop
2013-03-26 10:28:42.6522|15|INFO|SciTech.Profiler.ProfilerClient|Wake-up events set in Stop
2013-03-26 10:28:42.6522|15|INFO|SciTech.Profiler.ProfilerClient|Closing pipes and listeners
2013-03-26 10:28:43.1365|12|INFO|SciTech.Profiler.ProfilerClient|ProfilerClient.RequestStop entered, reason=ConnectionLost, error=Attempted to read past the end of the stream.
2013-03-26 10:28:43.1365|15|INFO|SciTech.Profiler.ProfilerClient|Pipes and listeners closed, set the stopped event
2013-03-26 10:28:43.1365|15|INFO|SciTech.Profiler.ProfilerClient|Trying to end session
2013-03-26 10:28:43.1365|15|INFO|SciTech.Profiler.ProfilerClient|EndSession returned, set state to Stopped
2013-03-26 10:28:43.1365|15|INFO|SciTech.Profiler.Memory.ProfilerComparison|RetrieveSnapshotData enter
2013-03-26 10:28:43.1365|15|INFO|SciTech.Profiler.Memory.ProfilerComparison|RetrieveSnapshotData leave - SnapshotData already updated
2013-03-26 10:28:43.1522|1|INFO|SciTech.NetMemProfiler.Controls.TasksContainerView|Hiding panel
2013-03-26 10:28:43.1678|1|INFO|SciTech.NetMemProfiler.Controls.TasksContainerView|Panel hidden
- 2013-03-26 10:24:57.765 [1c98] WARNING: Function has internal implementation, but is not flagged as internal: CreateWindowExW
2013-03-26 10:24:57.765 [1c98] WARNING: Function has internal implementation, but is not flagged as internal: CloseEnhMetaFile
2013-03-26 10:24:57.765 [1c98] WARNING: Function has internal implementation, but is not flagged as internal: GlobalFree
2013-03-26 10:24:57.781 [1c98] WARNING: Function is marked as internal, but has no internal implementation : LoadLibraryA
2013-03-26 10:24:57.781 [1c98] WARNING: Function is marked as internal, but has no internal implementation : LoadLibraryExA
2013-03-26 10:24:57.781 [1c98] WARNING: Function is marked as internal, but has no internal implementation : LoadLibraryExW
2013-03-26 10:24:57.781 [1c98] WARNING: Function is marked as internal, but has no internal implementation : LoadLibraryW
2013-03-26 10:24:57.812 [1c98] WARNING: Function is marked as internal, but has no internal implementation : DefWindowProcA
2013-03-26 10:24:57.812 [1c98] WARNING: Function is marked as internal, but has no internal implementation : DefWindowProcW
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
.....
2013-03-26 10:28:26.027 [1c98] ERROR : Failed to ResolveTypeRef in AddClassFromTokenAndTypeArgs (HRESULT=0x80004005)
2013-03-26 10:28:26.089 [1c98] ERROR : Failed to ResolveTypeRef in AddClassFromTokenAndTypeArgs (HRESULT=0x80004005)
2013-03-26 10:28:26.089 [1c98] ERROR : Failed to ResolveTypeRef in AddClassFromTokenAndTypeArgs (HRESULT=0x80004005)
2013-03-26 10:28:26.089 [1c98] INFO : LdrLoadDll(C:\WINDOWS\assembly\GAC_MSIL\xxx.xxxx.Logger\2.2.3.3__2d978e351d7e49ba\xxxxxx enter
2013-03-26 10:28:26.089 [1c98] WARNING: LdrLoadDll failed
2013-03-26 10:28:26.121 [1c98] WARNING: Failed to load full symbols using safe symbol reader
2013-03-26 10:28:35.136 [1c98] WARNING: Full symbols not loaded
Kind Regards
-
- Posts: 1029
- Joined: Wed Mar 02, 2005 7:53 pm
Re: Start profiling an application from command prompt
Thanks for the log-files. Unfortunately they didn't provide any information about what causing the process to terminate. The ProfilerClientLog just includes info that the process has terminated. The last entries in ProfilerLog file might contain some information that explains the crash, but I doubt it. To find out what's causing the crash, we will probably need a crash dump file, or be able to profile your application ourselves. Can you contact us at support@scitech.se so that we can continue the investigations?
Are you able to profile the process if you do not enable the unmanaged resources tracker?
Are you able to profile the process if you do not enable the unmanaged resources tracker?
Best regards,
Andreas Suurkuusk
SciTech Software AB
Andreas Suurkuusk
SciTech Software AB
Re: Start profiling an application from command prompt
Hi,
I am able to profile when I do it as "attaching a running process".
I haven tried it(via cmd line) without "unmanaged resources tracker" because it is what I need.
the "last" lines of the log
:
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: CreateThread
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: CreateRemoteThread
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : StackTracer::PerformSymbolReaderStackWalk enter
2013-03-26 10:28:35.339 [1618] INFO : StackTracer::PerformSymbolReaderStackWalk leave
2013-03-26 10:28:35.339 [1618] INFO : StackTracer::PerformSymbolReaderStackWalk enter
2013-03-26 10:28:35.339 [1618] INFO : StackTracer::PerformSymbolReaderStackWalk leave
2013-03-26 10:28:35.339 [1618] INFO : RunTimeSuspendStarted
2013-03-26 10:28:35.339 [1618] INFO : RunTimeSuspendFinished
2013-03-26 10:28:35.339 [1618] INFO : PerformRuntimeResumeStart WITHOUT runningGC
2013-03-26 10:28:35.339 [1618] INFO : RuntimeResumeFinished
2013-03-26 10:28:35.339 [1618] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.339 [1618] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.339 [1618] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.339 [1618] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1618] INFO : Invalid id
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke begin: DuplicateHandle
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1618] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke begin: CreateEventW
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1618] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke begin: CreateEventW
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1618] INFO : Valid id: 388
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke begin: CreateEventW
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1618] INFO : Valid id: 38c
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke begin: CreateEventW
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1618] INFO : Valid id: 390
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1618] INFO : Instance id: 1fc
2013-03-26 10:28:35.339 [1618] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1618] INFO : Instance id: 1f8
2013-03-26 10:28:35.339 [1618] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: CreateEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 394
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1618] INFO : Instance id: 21c
2013-03-26 10:28:35.339 [1618] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: RegOpenKeyExW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 1f8
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: RegCloseKey
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 1f8
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : LdrLoadDll(xpsp2res.dll) enter
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::HandleLoadedDll enter
2013-03-26 10:28:35.339 [1c98] INFO : StackTracer::AddSymbolReaderModule enter
2013-03-26 10:28:35.339 [1c98] INFO : StackTracer::AddSymbolReaderModule leave
2013-03-26 10:28:35.339 [1c98] INFO : StackTracer::AddSymbolReaderModule enter
2013-03-26 10:28:35.339 [1c98] INFO : StackTracer::AddSymbolReaderModule leave
2013-03-26 10:28:35.339 [1c98] INFO : StackTracer::InitSymbolsCache enter
2013-03-26 10:28:35.339 [1c98] INFO : SymbolsCache::SymbolsCache enter
2013-03-26 10:28:35.355 [1c98] INFO : SymbolsCache::InitCacheFromExistingData enter
2013-03-26 10:28:35.355 [1c98] INFO : SymbolsCache::InitCacheFromExistingData leave
2013-03-26 10:28:35.355 [1c98] INFO : SymbolsCache::SymbolsCache leave
2013-03-26 10:28:35.355 [1c98] INFO : StackTracer::InitSymbolsCache leave
2013-03-26 10:28:35.355 [1c98] INFO : Reporting module 44: C:\WINDOWS\system32\xpsp2res.dll
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::HandleLoadedDll leave
2013-03-26 10:28:35.355 [1c98] INFO : LdrLoadDll(xpsp2res.dll) leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532ce8
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: RegOpenKeyExW
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: RegOpenKeyExW
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 398
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: RegCloseKey
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 398
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenProcessToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 398
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateEventW
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 39c
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateFileW
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 3a0
2013-03-26 10:28:35.355 [1c98] INFO : Nested instance destroyed
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateIoCompletionPort
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 2d8
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 39c
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 3a0
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 398
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 398
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenProcessToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 3a0
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 3a0
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 398
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: AllocateAndInitializeSid
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 5f57260
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: AllocateAndInitializeSid
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 6cd9ea0
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: FreeSid
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 5f57260
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: FreeSid
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 6cd9ea0
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateEventW
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 3a0
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateThread
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateRemoteThread
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 39c
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 39c
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenEventA
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenEventA
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : LdrLoadDll(OLE32) enter
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::HandleLoadedDll enter
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::HandleLoadedDll leave
2013-03-26 10:28:35.355 [1c98] INFO : LdrLoadDll(OLE32) leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateEventW
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 3a8
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateThread
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateRemoteThread
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 3ac
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 3ac
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 3ac
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
Kr
Thomas
I am able to profile when I do it as "attaching a running process".
I haven tried it(via cmd line) without "unmanaged resources tracker" because it is what I need.
the "last" lines of the log

2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: OpenFileMappingW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: MapViewOfFileEx
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 384
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 380
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: UnmapViewOfFile
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 8190000
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: CreateThread
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: CreateRemoteThread
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 37c
2013-03-26 10:28:35.339 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : StackTracer::PerformSymbolReaderStackWalk enter
2013-03-26 10:28:35.339 [1618] INFO : StackTracer::PerformSymbolReaderStackWalk leave
2013-03-26 10:28:35.339 [1618] INFO : StackTracer::PerformSymbolReaderStackWalk enter
2013-03-26 10:28:35.339 [1618] INFO : StackTracer::PerformSymbolReaderStackWalk leave
2013-03-26 10:28:35.339 [1618] INFO : RunTimeSuspendStarted
2013-03-26 10:28:35.339 [1618] INFO : RunTimeSuspendFinished
2013-03-26 10:28:35.339 [1618] INFO : PerformRuntimeResumeStart WITHOUT runningGC
2013-03-26 10:28:35.339 [1618] INFO : RuntimeResumeFinished
2013-03-26 10:28:35.339 [1618] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.339 [1618] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.339 [1618] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.339 [1618] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1618] INFO : Invalid id
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke begin: DuplicateHandle
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1618] INFO : Valid id: 380
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke begin: CreateEventW
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1618] INFO : Valid id: 384
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke begin: CreateEventW
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1618] INFO : Valid id: 388
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke begin: CreateEventW
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1618] INFO : Valid id: 38c
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke begin: CreateEventW
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1618] INFO : Valid id: 390
2013-03-26 10:28:35.339 [1618] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1618] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1618] INFO : Instance id: 1fc
2013-03-26 10:28:35.339 [1618] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1618] INFO : Instance id: 1f8
2013-03-26 10:28:35.339 [1618] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: CreateEventW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 394
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1618] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.339 [1618] INFO : Instance id: 21c
2013-03-26 10:28:35.339 [1618] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke begin: RegOpenKeyExW
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.339 [1c98] INFO : Valid id: 1f8
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.339 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke begin: RegCloseKey
2013-03-26 10:28:35.339 [1c98] INFO : Instance id: 1f8
2013-03-26 10:28:35.339 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.339 [1c98] INFO : LdrLoadDll(xpsp2res.dll) enter
2013-03-26 10:28:35.339 [1c98] INFO : ResourceTracker::HandleLoadedDll enter
2013-03-26 10:28:35.339 [1c98] INFO : StackTracer::AddSymbolReaderModule enter
2013-03-26 10:28:35.339 [1c98] INFO : StackTracer::AddSymbolReaderModule leave
2013-03-26 10:28:35.339 [1c98] INFO : StackTracer::AddSymbolReaderModule enter
2013-03-26 10:28:35.339 [1c98] INFO : StackTracer::AddSymbolReaderModule leave
2013-03-26 10:28:35.339 [1c98] INFO : StackTracer::InitSymbolsCache enter
2013-03-26 10:28:35.339 [1c98] INFO : SymbolsCache::SymbolsCache enter
2013-03-26 10:28:35.355 [1c98] INFO : SymbolsCache::InitCacheFromExistingData enter
2013-03-26 10:28:35.355 [1c98] INFO : SymbolsCache::InitCacheFromExistingData leave
2013-03-26 10:28:35.355 [1c98] INFO : SymbolsCache::SymbolsCache leave
2013-03-26 10:28:35.355 [1c98] INFO : StackTracer::InitSymbolsCache leave
2013-03-26 10:28:35.355 [1c98] INFO : Reporting module 44: C:\WINDOWS\system32\xpsp2res.dll
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::HandleLoadedDll leave
2013-03-26 10:28:35.355 [1c98] INFO : LdrLoadDll(xpsp2res.dll) leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532ce8
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: LoadResource
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 8532d18
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: RegOpenKeyExW
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: RegOpenKeyExW
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 398
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: RegCloseKey
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 398
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenProcessToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 398
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateEventW
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 39c
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateFileW
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 3a0
2013-03-26 10:28:35.355 [1c98] INFO : Nested instance destroyed
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateIoCompletionPort
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 2d8
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 39c
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 3a0
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] WARNING: Heap memory instance to destroy not found
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 398
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 398
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenProcessToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 3a0
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 3a0
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 398
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: AllocateAndInitializeSid
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 5f57260
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: AllocateAndInitializeSid
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 6cd9ea0
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: FreeSid
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 5f57260
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: FreeSid
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 6cd9ea0
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateEventW
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 3a0
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateThread
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateRemoteThread
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 39c
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 39c
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenEventA
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenEventA
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenEventW
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : LdrLoadDll(OLE32) enter
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::HandleLoadedDll enter
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::HandleLoadedDll leave
2013-03-26 10:28:35.355 [1c98] INFO : LdrLoadDll(OLE32) leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: OpenThreadToken
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Invalid id
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateEventW
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 3a8
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateThread
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke begin: CreateRemoteThread
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 3ac
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance enter
2013-03-26 10:28:35.355 [1c98] INFO : Valid id: 3ac
2013-03-26 10:28:35.355 [1c98] INFO : Instance already exists!
2013-03-26 10:28:35.355 [1c98] INFO : ResourceTracker::CreateStdInstance leave
2013-03-26 10:28:35.355 [1c98] INFO : CreateFunctionInvoke end
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke begin: CloseHandle
2013-03-26 10:28:35.355 [1c98] INFO : Instance id: 3ac
2013-03-26 10:28:35.355 [1c98] INFO : DestroyFunctionInvoke end
Kr
Thomas
-
- Posts: 1029
- Joined: Wed Mar 02, 2005 7:53 pm
Re: Start profiling an application from command prompt
I'm sorry for the delay. It is currently Easter holidays in Sweden.
As I suspected the last lines in the log-file do not reveal what's causing the process to terminate (i.e. it's not crashing during a call to a profiler function). Most likely your process terminates due to an unhandled Win32 exception (e.g. an access violation). To investigate this further, we would need a crash dump of the profiled process, or even better, be able to run your program and reproduce the error ourselves. Can you contact us at support@scitech.se so that we can discuss how to continue the investigation?
As I suspected the last lines in the log-file do not reveal what's causing the process to terminate (i.e. it's not crashing during a call to a profiler function). Most likely your process terminates due to an unhandled Win32 exception (e.g. an access violation). To investigate this further, we would need a crash dump of the profiled process, or even better, be able to run your program and reproduce the error ourselves. Can you contact us at support@scitech.se so that we can discuss how to continue the investigation?
Best regards,
Andreas Suurkuusk
SciTech Software AB
Andreas Suurkuusk
SciTech Software AB
Re: Start profiling an application from command prompt
Dear,
Letting you run the program is most recently impossible for many reasons.
What kind of crash dump do you wish to receive ? windows crash dump ?
This is taken way too much time to get this started and as in most projects there is no time or budget for this.
This is really discouraging.
Kind Regards
Letting you run the program is most recently impossible for many reasons.
What kind of crash dump do you wish to receive ? windows crash dump ?
This is taken way too much time to get this started and as in most projects there is no time or budget for this.
This is really discouraging.
Kind Regards
-
- Posts: 1029
- Joined: Wed Mar 02, 2005 7:53 pm
Re: Start profiling an application from command prompt
I definitely understand that you can't let us run the program. This is often not possible, but it's the best way for us to locate problems like this.
Yes, a Windows crash dump that is collected at the time of the crash would hopefully provide us with some information about what's causing the crash.
I'm sorry for the inconvenience. The resource tracker makes low-level modifications of the profiled process, and there's a risk that something unexpected happens. We will look into this further and see if we can reproduce a crash. What OS and .NET Framework version are you using?
Yes, a Windows crash dump that is collected at the time of the crash would hopefully provide us with some information about what's causing the crash.
I'm sorry for the inconvenience. The resource tracker makes low-level modifications of the profiled process, and there's a risk that something unexpected happens. We will look into this further and see if we can reproduce a crash. What OS and .NET Framework version are you using?
Best regards,
Andreas Suurkuusk
SciTech Software AB
Andreas Suurkuusk
SciTech Software AB
Re: Start profiling an application from command prompt
Dear,
We are using an Embedded Windows XP SP3 OS with .NET framework 3.5.
There is no dump file.
Any idea ?
Kind Regards
We are using an Embedded Windows XP SP3 OS with .NET framework 3.5.
There is no dump file.
Any idea ?
Kind Regards
-
- Posts: 1029
- Joined: Wed Mar 02, 2005 7:53 pm
Re: Start profiling an application from command prompt
We have been running some additional tests using the resource tracker under Windows XP, but we have not been able to find a problem. Windows XP Embedded is not a supported operating system and we have no test machine set up with this OS, so we have not been able to run any XP Embedded tests.
Without a crash dump or a way for us to run the software, there's unfortunately not much we can do to locate the error.
Without a crash dump or a way for us to run the software, there's unfortunately not much we can do to locate the error.
Best regards,
Andreas Suurkuusk
SciTech Software AB
Andreas Suurkuusk
SciTech Software AB
Who is online
Users browsing this forum: No registered users and 11 guests