Description
(Wiki) Debugging > Special Pool
Wiki r36450 (by thfabba) added
- To enable Special Pool for all allocations, set <code>MmSpecialPoolTag</code> to <code>'*'</code>.
But
Log of .../special.c never had related code:
| 75 BOOLEAN | 
| 76 	NTAPI | 
| 77 MmUseSpecialPool(SIZE_T NumberOfBytes, ULONG Tag) | 
| 78 	{ | 
| 79 /* Special pool is not suitable for allocations bigger than 1 page */ | 
| 80 if (NumberOfBytes > (PAGE_SIZE - sizeof(POOL_HEADER))) | 
| 81 return FALSE; | 
| 82 	 | 
| 83 return Tag == MmSpecialPoolTag; | 
| 84 	} | 
Do we want to update the wiki?
Or to actually support '*' value?
Attachments
Issue Links
- blocks
- 
                    CORE-12714 Special Pool: support tag wildcard matching -         
- Open
 
-