Author: mbosma Date: Sun Jul 9 23:37:39 2006 New Revision: 22977
URL: http://svn.reactos.org/svn/reactos?rev=22977&view=rev Log: Add comments from cc-branch headers to trunk to make the header patch smaller.
Modified: trunk/reactos/ntoskrnl/include/internal/mm.h
Modified: trunk/reactos/ntoskrnl/include/internal/mm.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/include/internal/m... ============================================================================== --- trunk/reactos/ntoskrnl/include/internal/mm.h (original) +++ trunk/reactos/ntoskrnl/include/internal/mm.h Sun Jul 9 23:37:39 2006 @@ -165,12 +165,12 @@
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;