Dec 5, 2016 Post comments count0 Post likes count4 The case of the unexpected ERROR_ACCESS_DENIED when calling MapViewOfFile Raymond Chen Mind those weakly-typed integers.
Dec 2, 2016 Post comments count0 Post likes count1 Why do I get a _BLOCK_TYPE_IS_VALID debug assertion failure when I try to delete a WIC pixel buffer? Raymond Chen Because that's not your pixel buffer.
Dec 1, 2016 Post comments count0 Post likes count1 What is __wchar_t (with the leading double underscores) and why am I getting errors about it? Raymond Chen It's the internal wchar_t.
Nov 30, 2016 Post comments count0 Post likes count1 What could be happening in Safe Mode to make my heap corruption bug go away? Raymond Chen It's more about what's not happening.
Nov 28, 2016 Post comments count0 Post likes count1 If I simply want to create a registry key but don’t intend to do anything else with it, what security access mask should I ask for? Raymond Chen If you need nothing, then ask for nothing.
Nov 25, 2016 Post comments count0 Post likes count1 Lock free many-producer/single-consumer patterns: A work queue of distinct events, FIFO Raymond Chen No cutting in line.
Nov 24, 2016 Post comments count0 Post likes count1 Lock free many-producer/single-consumer patterns: A work queue of distinct events, order not important Raymond Chen Each one is different in its own special way, but we don't care what order they are processed.
Nov 23, 2016 Post comments count0 Post likes count1 Lock free many-producer/single-consumer patterns: A work queue of identical non-coalescable events Raymond Chen They're all the same, but each one counts.
Nov 22, 2016 Post comments count0 Post likes count1 Lock free many-producer/single-consumer patterns: A work queue where the last one wins Raymond Chen There can be more than one, but only the last one counts.
Nov 21, 2016 Post comments count0 Post likes count1 Lock free many-producer/single-consumer patterns: A work queue with task coalescing Raymond Chen Starting out simple.