You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/MemoryPools/Collections/Specialized/PoolsDefaults.cs

9 lines
284 B

namespace MemoryPools.Collections.Specialized
{
public static class PoolsDefaults
{
public const int DefaultPoolBucketDegree = 7;
public const int DefaultPoolBucketSize = 1 << DefaultPoolBucketDegree;
public const int DefaultPoolBucketMask = DefaultPoolBucketSize - 1;
}
}

Powered by TurnKey Linux.