-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathLogicalProcessorInfo.cs
More file actions
68 lines (61 loc) · 2.06 KB
/
Copy pathLogicalProcessorInfo.cs
File metadata and controls
68 lines (61 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/////////////////////////////////////////////////////////////////////////////////
// paint.net //
// Copyright (C) dotPDN LLC, Rick Brewster, and contributors. //
// All Rights Reserved. //
/////////////////////////////////////////////////////////////////////////////////
using Microsoft.Win32;
using PaintDotNet.MemoryManagement;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace PaintDotNet.SystemLayer
{
public sealed class LogicalProcessorInfo
{
private IReadOnlyList<LogicalProcessorCoreInfo> cores;
private IReadOnlyList<LogicalProcessorCacheInfo> caches;
private IReadOnlyList<LogicalProcessorNumaNodeInfo> numaNodes;
private IReadOnlyList<LogicalProcessorPackageInfo> packages;
public IReadOnlyList<LogicalProcessorCoreInfo> Cores
{
get
{
return this.cores;
}
}
public IReadOnlyList<LogicalProcessorCacheInfo> Caches
{
get
{
return this.caches;
}
}
public IReadOnlyList<LogicalProcessorNumaNodeInfo> NumaNodes
{
get
{
return this.numaNodes;
}
}
public IReadOnlyList<LogicalProcessorPackageInfo> Packages
{
get
{
return this.packages;
}
}
internal LogicalProcessorInfo(
IReadOnlyList<LogicalProcessorCoreInfo> cores,
IReadOnlyList<LogicalProcessorCacheInfo> caches,
IReadOnlyList<LogicalProcessorNumaNodeInfo> numaNodes,
IReadOnlyList<LogicalProcessorPackageInfo> packages)
{
this.cores = cores;
this.caches = caches;
this.numaNodes = numaNodes;
this.packages = packages;
}
}
}