ExAllocatePrivateWorkerPool

NTSTATUS __stdcall ExAllocatePrivateWorkerPool(
        UINT64 *PoolID,
        UINT64 MaximumWorkerThreads,
        UINT64 MinimumWorkerThreads){
  return ExpPartitionCreatePool(
           *(_QWORD *)(PspSystemPartition + 16),
           MaximumWorkerThreads,
           MinimumWorkerThreads,
           PoolID);
}

Referenced by:

SmFirstTimeInit