Dec 28, 2012
Post comments count0
Post likes count1
What do HeapLock and HeapUnlock do, and when do I need to call them?
You never need to call the and functions under normal operation. Assuming the heap is serialized (which is the default), all the standard heap functions like and will automatically serialize. In fact, the way they serialize is by calling the¹ and functions! Nearly all heap operations complete in a single call. If your heap is serial...
