├── .gitattributes ├── LICENSE ├── LogicalProcessorCacheInfo.cs ├── LogicalProcessorCoreInfo.cs ├── LogicalProcessorInfo.cs ├── LogicalProcessorInfoExtensions.cs ├── LogicalProcessorNumaNodeInfo.cs ├── LogicalProcessorPackageInfo.cs ├── NativeConstants.cs ├── NativeEnums.cs ├── NativeErrors.cs ├── NativeMethods.cs ├── NativeStructs.cs ├── Processor.cs ├── ProcessorArchitecture.cs ├── ProcessorArchitectureExtensions.cs ├── ProcessorFeature.cs ├── README.md ├── SafeCoTaskMemAllocHandle.cs └── UInt64Util.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/LICENSE -------------------------------------------------------------------------------- /LogicalProcessorCacheInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/LogicalProcessorCacheInfo.cs -------------------------------------------------------------------------------- /LogicalProcessorCoreInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/LogicalProcessorCoreInfo.cs -------------------------------------------------------------------------------- /LogicalProcessorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/LogicalProcessorInfo.cs -------------------------------------------------------------------------------- /LogicalProcessorInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/LogicalProcessorInfoExtensions.cs -------------------------------------------------------------------------------- /LogicalProcessorNumaNodeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/LogicalProcessorNumaNodeInfo.cs -------------------------------------------------------------------------------- /LogicalProcessorPackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/LogicalProcessorPackageInfo.cs -------------------------------------------------------------------------------- /NativeConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/NativeConstants.cs -------------------------------------------------------------------------------- /NativeEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/NativeEnums.cs -------------------------------------------------------------------------------- /NativeErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/NativeErrors.cs -------------------------------------------------------------------------------- /NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/NativeMethods.cs -------------------------------------------------------------------------------- /NativeStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/NativeStructs.cs -------------------------------------------------------------------------------- /Processor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/Processor.cs -------------------------------------------------------------------------------- /ProcessorArchitecture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/ProcessorArchitecture.cs -------------------------------------------------------------------------------- /ProcessorArchitectureExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/ProcessorArchitectureExtensions.cs -------------------------------------------------------------------------------- /ProcessorFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/ProcessorFeature.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/README.md -------------------------------------------------------------------------------- /SafeCoTaskMemAllocHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/SafeCoTaskMemAllocHandle.cs -------------------------------------------------------------------------------- /UInt64Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paintdotnet/PaintDotNet.ProcessorInformation/HEAD/UInt64Util.cs --------------------------------------------------------------------------------