vote up 1 vote down star

Is there any tool which displays at runtime, Page Faults delta on a per thread basis? Basically I have an application that is causing lots of page faults and I want to nail down the thread which is causing the maximum.

flag

Were you able to find any good debugging tools to deal with that? I have an application like that and I just discovered it's getting a ton of Page Faults. – Miky D Sep 21 at 19:17

3 Answers

vote up 0 vote down check

I really doubt you could nail down page faults to threads a process page faults not a thread. Surely though its going to be the busiest thread in terms of either CPU or may be Context switches that you would want to look at.

I use process explorer for this sort of diagnosis. Open the properties on your application and select the threads tab.

link|flag
vote up 0 vote down

Use Xperf. It aggregates ETW events & lets you drill down to find out which process/thread/function is responsible for most cpu/memalloc/diskops/faults etc.

link|flag
vote up 0 vote down

Use PerfMon tool to monitor counters.

link|flag
Can you tell me the counters to add? I dont see any Per thread counter which will show the page faults. – Canopus Apr 23 at 11:39
I do not believe there is a counter for page-fault by thread, only for the process. Thread Counter per process maybe help you. – lsalamon Apr 23 at 13:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.