Tagged Questions

4
votes
5answers
177 views

C++ _inline is being ignored in a singleton and showing up in my profiler. How come?

I have a lot of classes in my project accessed by a singleton like so: _inline GUI_BS_Map* GUI_GetBS_Map() { static GUI_BS_Map obj; return &obj; }; As I understand it, this code should ...
1
vote
1answer
176 views

GlowCode vs. AQTime C++ profiling performance in the real world?

I am a user of AQTime Pro and while the tool is pretty nice, it does have a horrible performance impact on the application under test if you're not careful. (Even if you are careful, the performance ...
1
vote
1answer
514 views

C/C++ AQtime profiler questions

I need to profile my console program with AQ. It is in one big file (for optimizations purposes). void function1(); void function2() // etc more declarations int main{ //alot of loops, and ...
0
votes
0answers
83 views

Why does this code not generate more soft page faults? [closed]

I'm looking into possible causes of and solutions for page faults. I've created 2 Qt models to display strings: CleanModel: containing a 2 dimensional array of QChar-array's ListModel: containing a ...
0
votes
1answer
162 views

measuring code coverage of an unit test using aqtime

I want to measure the code coverage of an unit test with aqtime. The application to test uses a lot of boost functionality. Now these boost methods appear in the test report. With these methods in the ...