I already have my team use that book like it were the bible. I just want to know which hardware factor is the bottleneck in my build times: Memory, Processor, or Hard drive Michael S. Scherotter Lead Software Architect Tartus Development, Inc.
Michael S Scherotter
Posts
-
Finding bottlenecks in development system -
Finding bottlenecks in development systemDoes anyone have any suggestions to find out what is limiting my build times: Processor, Disk, or Memory on Windows 2000? I am trying to put together configuration for development systems using MSVC 6.0 and want to know if anyone has found specific performance monitor stats are helpful. Michael S. Scherotter Lead Software Architect Tartus Development, Inc.
-
File properities on Win2kThank you. How can you enumerate the streams on a file? Michael S. Scherotter Lead Software Architect Tartus Development, Inc.
-
File properities on Win2kWhat are the APIs for accessing these streams? Michael S. Scherotter Lead Software Architect Tartus Development, Inc.
-
Windows 2000 NTFS Custom File attributesRight click on any file in Windows 2000 NTFS and you get a summary tab. In that summary tab, you can attach any number of attributes to the file including Author, Subject, Category, etc. You can do this to any file, not just compound document files. What are the Win32 APIs to programatically get and set these attributes in C/C++? Michael S. Scherotter Lead Software Architect Tartus Development, Inc.
-
OpenGL drawingOnly redraw the scene when something changes. If you still need a frame every second, do a ::BitBlt() each second. Michael S. Scherotter Lead Software Architect Tartus Development, Inc.
-
OS problemWhat does the function do? Please provide the code for the function Michael S. Scherotter Lead Software Architect Tartus Development, Inc.
-
CallBack function// The callback function type typedef void StepProc(); // the callback function void Step() { cout << "."; } void DoSteps(StepProc* pProc) { for (int i = 0; i < 10; i++) { (*pProc)(); } } void TestCallback() { //Call DoSteps() with ::Step as the argument ::DoSteps(::Step); } Michael S. Scherotter Lead Software Architect Tartus Development, Inc.
-
Left and top scrollbarsIs there any way besides using a right-reading locale to make windows with scrollbars on the left and top instead of on the right and bottom? Michael S. Scherotter Lead Software Architect Tartus Development, Inc.
-
How to sort std::list<CMyClass*>?You can try this: std::list theList; bool Less(const CMyBaseClass* pFirst, const CMyBaseClass* pSecond) { return (*pFirst < *pSecond); } std::sort(theList.begin(), theList.end(), Less); Michael S. Scherotter Lead Software Architect Tartus Development, Inc.
-
compositing two HBITMAPsI have two bitmaps. How do I stretchblt one into the other?