From 555c9d0ec0299c97db79d40ce3c4d219b1f6ac51 Mon Sep 17 00:00:00 2001 From: Maarten Bosma Date: Sun, 9 Jul 2006 19:37:39 +0000 Subject: [PATCH] Add comments from cc-branch headers to trunk to make the header patch smaller. svn path=/trunk/; revision=22977 --- reactos/ntoskrnl/include/internal/mm.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/reactos/ntoskrnl/include/internal/mm.h b/reactos/ntoskrnl/include/internal/mm.h index 9b9de19c6b5..3f6a3050f36 100644 --- a/reactos/ntoskrnl/include/internal/mm.h +++ b/reactos/ntoskrnl/include/internal/mm.h @@ -165,12 +165,12 @@ typedef struct typedef struct _MM_SECTION_SEGMENT { - LONGLONG FileOffset; - ULONG_PTR VirtualAddress; - ULONG RawLength; - ULONG Length; + LONGLONG FileOffset; /* start offset into the file for image sections */ + ULONG_PTR VirtualAddress; /* dtart offset into the address range for image sections */ + ULONG RawLength; /* length of the segment which is part of the mapped file */ + ULONG Length; /* absolute length of the segment */ ULONG Protection; - FAST_MUTEX Lock; + FAST_MUTEX Lock; /* lock which protects the page directory */ ULONG ReferenceCount; SECTION_PAGE_DIRECTORY PageDirectory; ULONG Flags;