0
votes
What’s the best hashing algorithm to use on a stl string when using hash_map?
If you are hashing a fixed set of words, the best hash function is often a perfect hash function. However, they generally requ …
1
vote
What is the best and most complete implementation of Unix system commands?
Microsoft distributes a UNIX API compatibility layer for Windows NT-based OSes, as well as many common UNIX command line utilities that run on top of this compatibility layer. Unlike Cygwin, it doe …
2
votes
How to pause / resume any external process under Windows ?
If you "debug the debugger" (for instance, using logger.exe to trace all API calls made by windbg.exe), it appears that the debugger uses SuspendThread()/ …
8
votes
What is your favourite Windbg tip/trick?
My favorite WinDbg tip is to read Advanced Windows Debugging by Mario Hewardt and Daniel Pravat:
…
2
votes
Decent profiler for Windows?
The Windows Driver Kit includes a non-instrumenting user/kernel sampling profiler called …
3
votes
How does _ftime / Windows internal time work?
Regarding how _ftime() works:
If you have Microsoft Visual C++ installed, you probably have the C runtime source installed as well. _ftime() is defined in %P …
6
votes
Missing msvcr80.dll
The VC80 SP1 CRT redistributable package will install both the RTM and SP1 versions of the C runtime into %SystemRoot%\WinSxS (assuming you're using Windows XP or Vista; Windows 2000 d …
4
votes
How to translate a virtual memory address to a physical address?
In my C++ program (on Windows), I'm allocating a block of memory and can make sure it stays locked (unswapped and contiguous) in physical memory (i.e. using VirtualAllocEx(), MapUserPhysicalPag …
3
votes
reading an application’s manifest file?
You can extract/replace/merge/validate manifests using the command line manifest tool, mt.exe, which is part of the Windows SDK:
C:\Program Files\Microsoft SDKs\Windows …
4
votes
Measuring memory use of device drivers in Windows
Windows tracks device driver memory usage with pool tags. If you know what pool tags the driver in question passes to …
3
votes
Windows System Idle Processes interfering with performance measurement
The idle process typically doesn't do any useful work except execute the HLT instruction, which puts that CPU core into a lower power state ( …
0
votes
Producing 64-bit builds on Windows with free software
If you want to use the Windows SDK compiler with GNU make or another build system, you could write a program/script that converts the output of …
5
votes
As a programmer, what do I need to worry about when moving to 64-bit windows?
As far as I'm concerned, the single most important thing about porting C/C++ code to 64-bit Windows is to test your application with MEM_TOP_DOWN allocations enabled (All …
6
votes
Setting up a mock interface in C++
Is emulated device access a stopgap solution for until you get hardware? If so, I recommend finding some other way to be productive: work on something else, write unit tests, etc.
Is emula …
1
vote
Getting the symbols with xperf
What version of dbghelp.dll is it using? I've had trouble getting PDB symbols working with kernrate and other utilities when using the version of dbghelp.dll …
