Archive for June, 2007

Vista may BSOD in FwpsQueryPacketInjectionState0

If you are familiar with Windows Filtering Platform (WFP) , a technology introduced in Windows Vista, chances are good that you already have read about or used FwpsQueryPacketInjectionState0  few times. WDK headers declare


Inside fast mutex

If you are a driver developer, you probably are familiar with fast mutexes. Fast mutexes, also known as executive mutexes, are a faster alternative to regular kernel mutexes with some important differences – Fast mutexes cannot be recursively acquired in the same thread like the regular mutexes can. So you can only use fast mutexes when reentrancy while [...]