SharedOriginal evaluates to true if the page can be shared or false otherwise.
()
| 84 | |
| 85 | // SharedOriginal evaluates to true if the page can be shared or false otherwise. |
| 86 | func (b MemoryWorkingSetExBlock) SharedOriginal() bool { |
| 87 | return b&(1<<30) != 0 |
| 88 | } |
| 89 | |
| 90 | // Bad indicates the page has been reported as bad. |
| 91 | func (b MemoryWorkingSetExBlock) Bad() bool { |