Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 939c9a0

Browse files
Merge pull request #6496 from adityamandaleeka/virtual_cleanup
Add in-memory circular buffer for logging virtual memory operations.
2 parents 7371dea + e4c3163 commit 939c9a0

File tree

2 files changed

+195
-62
lines changed

2 files changed

+195
-62
lines changed

src/pal/src/include/pal/virtual.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ extern "C"
2828
typedef struct _CMI {
2929

3030
struct _CMI * pNext; /* Link to the next entry. */
31-
struct _CMI * pLast; /* Link to the previous entry. */
31+
struct _CMI * pPrevious; /* Link to the previous entry. */
3232

33-
UINT_PTR startBoundary; /* Starting location of the region. */
34-
SIZE_T memSize; /* Size of the entire region.. */
33+
UINT_PTR startBoundary; /* Starting location of the region. */
34+
SIZE_T memSize; /* Size of the entire region.. */
3535

3636
DWORD accessProtection; /* Initial allocation access protection. */
3737
DWORD allocationType; /* Initial allocation type. */

0 commit comments

Comments
 (0)