summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/ntdll.h
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2011-05-11 10:31:22 +0000
committerCorinna Vinschen <corinna@vinschen.de>2011-05-11 10:31:22 +0000
commit8285dae5403d72c15613c4cdcb9053090c6d7c5e (patch)
tree935a2ebc44bcd031f7d3493d23a1b23ebd057387 /winsup/cygwin/ntdll.h
parent34a6eeabfffd0ba2f1db43bae5f7239a49e080bb (diff)
downloadcygnal-8285dae5403d72c15613c4cdcb9053090c6d7c5e.tar.gz
cygnal-8285dae5403d72c15613c4cdcb9053090c6d7c5e.tar.bz2
cygnal-8285dae5403d72c15613c4cdcb9053090c6d7c5e.zip
* fhandler_process.cc (format_process_maps): Rework to report
all mapped address space in a process (committed or reserved), identifying the nature of the mapping (mapped file/image, heap, shared memory) when possible. (dos_drive_mappings): New helper classes. (heap_info): Ditto. * ntdll.h (struct _MEMORY_SECTION_NAME): Define.
Diffstat (limited to 'winsup/cygwin/ntdll.h')
-rw-r--r--winsup/cygwin/ntdll.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/winsup/cygwin/ntdll.h b/winsup/cygwin/ntdll.h
index 75ba1a5e8..090ec648f 100644
--- a/winsup/cygwin/ntdll.h
+++ b/winsup/cygwin/ntdll.h
@@ -645,6 +645,11 @@ typedef struct _MEMORY_WORKING_SET_LIST
ULONG WorkingSetList[1];
} MEMORY_WORKING_SET_LIST, *PMEMORY_WORKING_SET_LIST;
+typedef struct _MEMORY_SECTION_NAME
+{
+ UNICODE_STRING SectionFileName;
+} MEMORY_SECTION_NAME, *PMEMORY_SECTION_NAME;
+
typedef struct _FILE_BASIC_INFORMATION {
LARGE_INTEGER CreationTime;
LARGE_INTEGER LastAccessTime;