Shared evaluates to true if the page can be shared or false otherwise.
()
| 64 | |
| 65 | // Shared evaluates to true if the page can be shared or false otherwise. |
| 66 | func (b MemoryWorkingSetExBlock) Shared() bool { |
| 67 | return b&(1<<15) != 0 |
| 68 | } |
| 69 | |
| 70 | // Node represents the NUMA node. The maximum value of this member is 63. |
| 71 | func (b MemoryWorkingSetExBlock) Node() uintptr { |