source: trunk/src/kernel32/mmap.cpp@ 2077

Last change on this file since 2077 was 2077, checked in by sandervl, 26 years ago

cmd line fix, mmap fix + EB's string fixes

File size: 20.5 KB
Line 
1/* $Id: mmap.cpp,v 1.30 1999-12-14 19:14:28 sandervl Exp $ */
2
3/*
4 * Win32 Memory mapped file & view classes
5 *
6 * Copyright 1999 Sander van Leeuwen (sandervl@xs4all.nl)
7 *
8 * NOTE: Memory mapping DOES NOT work when kernel-mode code causes
9 * a pagefault in the memory mapped object. (exceptions aren't
10 * dispatched to our exception handler until after the kernel mode
11 * call returns (too late))
12 *
13 * NOTE: Are apps allowed to change the protection flags of memory mapped pages?
14 * I'm assuming they aren't for now.
15 *
16 * TODO: Handles returned should be usable by all apis that accept file handles
17 * TODO: Sharing memory mapped files between multiple processes
18 *
19 * Project Odin Software License can be found in LICENSE.TXT
20 *
21 */
22#include <os2win.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <win\virtual.h>
27#include <vmutex.h>
28#include <handlemanager.h>
29#include "mmap.h"
30#include "oslibdos.h"
31#include <winimagepeldr.h>
32
33//Global DLL Data
34#pragma data_seg(_GLOBALDATA)
35Win32MemMap *Win32MemMap::memmaps = NULL;
36VMutex globalmapMutex(VMUTEX_SHARED);
37#pragma data_seg()
38VMutex globalviewMutex;
39Win32MemMapView *Win32MemMapView::mapviews = NULL;
40
41//******************************************************************************
42//TODO: sharing between processes
43//******************************************************************************
44Win32MemMap::Win32MemMap(HFILE hfile, ULONG size, ULONG fdwProtect, LPSTR lpszName)
45 : nrMappings(0), pMapping(NULL), mMapAccess(0), referenced(0), image(0)
46{
47 globalmapMutex.enter();
48 next = memmaps;
49 memmaps = this;
50 globalmapMutex.leave();
51
52 hMemFile = hfile;
53
54 mSize = size;
55 mProtFlags = fdwProtect;
56 mProcessId = GetCurrentProcess();
57
58 if(lpszName) {
59 lpszMapName = (char *)_smalloc(strlen(lpszName)+1);
60 strcpy(lpszMapName, lpszName);
61 }
62 else lpszMapName = NULL;
63}
64//******************************************************************************
65//Map constructor used for executable image maps (only used internally)
66//******************************************************************************
67Win32MemMap::Win32MemMap(Win32PeLdrImage *pImage, ULONG baseAddress, ULONG size)
68 : nrMappings(0), pMapping(NULL), mMapAccess(0), referenced(0)
69{
70 globalmapMutex.enter();
71 next = memmaps;
72 memmaps = this;
73 globalmapMutex.leave();
74
75 hMemFile = -1;
76
77 mSize = size;
78 mProtFlags = PAGE_READWRITE;
79 mProcessId = GetCurrentProcess();
80
81 pMapping = (LPVOID)baseAddress;
82
83 image = pImage;
84 lpszMapName= NULL;
85}
86//******************************************************************************
87//******************************************************************************
88BOOL Win32MemMap::Init(HANDLE hMemMap)
89{
90 mapMutex.enter();
91 if(hMemFile != -1)
92 {
93 if(DuplicateHandle(mProcessId, hMemFile, GetCurrentProcess(),
94 &hMemFile, 0, FALSE, DUPLICATE_SAME_ACCESS) == FALSE)
95 {
96 dprintf(("Win32MemMap::Init: DuplicateHandle failed!"));
97 goto fail;
98 }
99 mSize = SetFilePointer(hMemFile, 0, NULL, FILE_END);
100 if(mSize == -1) {
101 dprintf(("Win32MemMap::init: SetFilePointer failed to set pos end"));
102 goto fail;
103 }
104 //SvL: Temporary limitation of size (Warp Server Advanced doesn't allow
105 // one to reserve more than 450 MB of continuous memory; (Warp 4
106 // much less))
107 if(mSize > 64*1024*1024) {
108 mSize = 64*1024*1024;
109 }
110 }
111
112 dprintf(("CreateFileMappingA for file %x, prot %x size %d, name %s", hMemFile, mProtFlags, mSize, lpszMapName));
113 this->hMemMap = hMemMap;
114 mapMutex.leave();
115 return TRUE;
116fail:
117 mapMutex.leave();
118 return FALSE;
119}
120//******************************************************************************
121//******************************************************************************
122Win32MemMap::~Win32MemMap()
123{
124 Win32MemMapView::deleteViews(this); //delete all views of our memory mapped file
125
126 dprintf(("Win32MemMap dtor: deleting view %x %x", pMapping, mSize));
127
128 mapMutex.enter();
129 if(lpszMapName) {
130 free(lpszMapName);
131 }
132 if(pMapping && !image) {
133 if(lpszMapName) {
134 OSLibDosFreeMem(pMapping);
135 }
136 else VirtualFree(pMapping, mSize, MEM_RELEASE);
137
138 pMapping = NULL;
139 }
140 if(hMemFile != -1) {
141 CloseHandle(hMemFile);
142 hMemFile = -1;
143 }
144 mapMutex.leave();
145
146 globalmapMutex.enter();
147 Win32MemMap *map = memmaps;
148
149 if(map == this) {
150 memmaps = next;
151 }
152 else {
153 while(map->next) {
154 if(map->next == this)
155 break;
156 map = map->next;
157 }
158 if(map->next) {
159 map->next = next;
160 }
161 else dprintf(("Win32MemMap::~Win32MemMap: map not found!! (%x)", this));
162 }
163 globalmapMutex.leave();
164}
165//******************************************************************************
166//We determine whether a page has been modified by checking it's protection flags
167//If the write flag is set, this means commitPage had to enable this due to a pagefault
168//(all pages are readonly until the app tries to write to it)
169//******************************************************************************
170BOOL Win32MemMap::commitPage(ULONG offset, BOOL fWriteAccess, int nrpages)
171{
172 MEMORY_BASIC_INFORMATION memInfo;
173 LPVOID lpPageFaultAddr = (LPVOID)((ULONG)pMapping + offset);
174 DWORD pageAddr = (DWORD)lpPageFaultAddr & ~0xFFF;
175 DWORD oldProt, newProt, nrBytesRead, size;
176 int i;
177
178// mapMutex.enter();
179
180 if(image) {
181 return image->commitPage(pageAddr, fWriteAccess);
182 }
183 newProt = mProtFlags & (PAGE_READONLY | PAGE_READWRITE | PAGE_WRITECOPY);
184
185 dprintf(("Win32MemMap::commitPage %x (faultaddr %x)", pageAddr, lpPageFaultAddr));
186 if(hMemFile != -1) {
187// for(i=0;i<nrpages;i++) {
188 if(VirtualQuery((LPSTR)pageAddr, &memInfo, nrpages*PAGE_SIZE) == 0) {
189 dprintf(("Win32MemMap::commitPage: VirtualQuery (%x,%x) failed for %x", pageAddr, nrpages*PAGE_SIZE));
190 goto fail;
191 }
192 //Only changes the state of the pages with the same attribute flags
193 //(returned in memInfo.RegionSize)
194 //If it's smaller than the mNrPages, it simply means one or more of the
195 //other pages have already been committed
196 if(memInfo.State & MEM_COMMIT)
197 {//if it's already committed, then the app tried to write to it
198 if(!fWriteAccess) {
199 dprintf(("Win32MemMap::commitPage: Huh? Already committed and not trying to write (%x,%x) failed for %x", pageAddr, memInfo.RegionSize));
200 goto fail;
201 }
202 if(VirtualProtect((LPVOID)pageAddr, memInfo.RegionSize, newProt, &oldProt) == FALSE) {
203 dprintf(("Win32MemMap::commitPage: Failed to set write flag on page (%x,%x) failed for %x", pageAddr, memInfo.RegionSize));
204 goto fail;
205 }
206 }
207 else {
208 if(VirtualAlloc((LPVOID)pageAddr, memInfo.RegionSize, MEM_COMMIT, PAGE_READWRITE) == FALSE) {
209 goto fail;
210 }
211 offset = pageAddr - (ULONG)pMapping;
212 size = memInfo.RegionSize;
213 if(offset + size > mSize) {
214 dprintf(("Adjusting size from %d to %d", size, mSize - offset));
215 size = mSize - offset;
216 }
217 if(SetFilePointer(hMemFile, offset, NULL, FILE_BEGIN) != offset) {
218 dprintf(("Win32MemMap::commitPage: SetFilePointer failed to set pos to %x", offset));
219 goto fail;
220 }
221 if(ReadFile(hMemFile, (LPSTR)pageAddr, size, &nrBytesRead, NULL) == FALSE) {
222 dprintf(("Win32MemMap::commitPage: ReadFile failed for %x", pageAddr));
223 goto fail;
224 }
225 if(nrBytesRead != size) {
226 dprintf(("Win32MemMap::commitPage: ReadFile didn't read all bytes for %x", pageAddr));
227 goto fail;
228 }
229 if(mProtFlags != PAGE_READWRITE) {
230 if(VirtualProtect((LPVOID)pageAddr, memInfo.RegionSize, newProt, &oldProt) == FALSE) {
231 goto fail;
232 }
233 }
234 }
235// pageAddr += PAGE_SIZE;
236// }
237 }
238 else {
239 ULONG sizeleft = nrpages*PAGE_SIZE;
240 while(sizeleft) {
241 if(VirtualQuery((LPSTR)pageAddr, &memInfo, sizeleft) == 0) {
242 dprintf(("Win32MemMap::commitPage: VirtualQuery (%x,%x) failed", pageAddr, sizeleft));
243 goto fail;
244 }
245 if(!(memInfo.State & MEM_COMMIT))
246 {//if it's already committed, then the app tried to write to it
247 if(VirtualAlloc((LPVOID)pageAddr, memInfo.RegionSize, MEM_COMMIT, newProt) == FALSE)
248 goto fail;
249 }
250 memInfo.RegionSize = (memInfo.RegionSize+PAGE_SIZE-1) & ~0xfff;
251 pageAddr += memInfo.RegionSize;
252 sizeleft -= memInfo.RegionSize;
253 }
254 }
255
256// mapMutex.leave();
257 return TRUE;
258fail:
259// mapMutex.leave();
260 return FALSE;
261}
262//******************************************************************************
263//******************************************************************************
264BOOL Win32MemMap::unmapViewOfFile(Win32MemMapView *view)
265{
266 mapMutex.enter();
267
268 if(nrMappings == 0)
269 goto fail;
270
271 delete view;
272
273 if(--nrMappings) {
274 VirtualFree(pMapping, mSize, MEM_RELEASE);
275 pMapping = NULL;
276 }
277 mapMutex.leave();
278 return TRUE;
279fail:
280 mapMutex.leave();
281 return FALSE;
282}
283//******************************************************************************
284//******************************************************************************
285LPVOID Win32MemMap::mapViewOfFile(ULONG size, ULONG offset, ULONG fdwAccess)
286{
287 DWORD processId = GetCurrentProcess();
288
289 mapMutex.enter();
290 ULONG memFlags = (mProtFlags & (PAGE_READONLY | PAGE_READWRITE | PAGE_WRITECOPY));
291 ULONG fAlloc = 0;
292 Win32MemMapView *mapview;
293
294 //@@@PH: if(fdwAccess & ~(FILE_MAP_WRITE|FILE_MAP_READ|FILE_MAP_COPY))
295 // Docs say FILE_MAP_ALL_ACCESS is same as FILE_MAP_WRITE. Doesn't match reality though.
296 if(fdwAccess & ~FILE_MAP_ALL_ACCESS)
297 goto parmfail;
298 if((fdwAccess & FILE_MAP_WRITE) && !(mProtFlags & PAGE_READWRITE))
299 goto parmfail;
300 if((fdwAccess & FILE_MAP_READ) && !(mProtFlags & (PAGE_READWRITE|PAGE_READONLY)))
301 goto parmfail;
302
303 //@@@PH
304 if (fdwAccess != FILE_MAP_ALL_ACCESS)
305 if((fdwAccess & FILE_MAP_COPY) && !(mProtFlags & PAGE_WRITECOPY))
306 goto parmfail;
307
308 if(offset+size > mSize)
309 goto parmfail;
310
311//TODO: If committed, read file into memory
312#if 0
313 if(mProtFlags & SEC_COMMIT)
314 fAlloc |= MEM_COMMIT;
315 else
316 if(mProtFlags & SEC_RESERVE)
317 fAlloc |= MEM_RESERVE;
318#else
319 fAlloc = MEM_RESERVE;
320#endif
321
322 //Memory has already been allocated for executable image maps (only used internally)
323 if(!pMapping && nrMappings == 0) {//if not mapped, reserve/commit entire view
324 //SvL: Always read/write access or else ReadFile will crash once we
325 // start committing pages.
326 // This is most likely an OS/2 bug and doesn't happen in Aurora
327 // when allocating memory with the PAG_ANY bit set. (without this
328 // flag it will also crash)
329 if(lpszMapName) {
330 pMapping = VirtualAllocShared(mSize, fAlloc, PAGE_READWRITE, lpszMapName);
331 }
332 else {
333 pMapping = VirtualAlloc(0, mSize, fAlloc, PAGE_READWRITE);
334 }
335 if(pMapping == NULL) {
336 dprintf(("Win32MemMap::mapFileView: VirtualAlloc %x %x %x failed!", mSize, fAlloc, memFlags));
337 goto fail;
338 }
339 //Windows NT seems to commit memory for memory maps, regardsless of the SEC_COMMIT flag
340 if(hMemFile == -1 && !image) {//commit memory
341 VirtualAlloc(pMapping, mSize, MEM_COMMIT, PAGE_READWRITE);
342 }
343 }
344 mapview = new Win32MemMapView(this, offset, (size == 0) ? mSize : size, fdwAccess);
345 if(mapview == NULL) {
346 goto fail;
347 }
348 if(mapview->everythingOk() == FALSE) {
349 dprintf(("Win32MemMap::mapFileView: !mapview->everythingOk"));
350 delete mapview;
351 goto fail;
352 }
353 nrMappings++;
354 mapMutex.leave();
355 return mapview->getViewAddr();
356
357parmfail:
358 dprintf(("Win32MemMap::mapFileView: ERROR_INVALID_PARAMETER"));
359 SetLastError(ERROR_INVALID_PARAMETER);
360fail:
361 mapMutex.leave();
362 return 0;
363}
364//******************************************************************************
365//We determine whether a page has been modified by checking it's protection flags
366//If the write flag is set, this means commitPage had to enable this due to a pagefault
367//(all pages are readonly until the app tries to modify the contents of the page)
368//
369//TODO: Are apps allowed to change the protection flags of memory mapped pages?
370// I'm assuming they aren't for now.
371//******************************************************************************
372BOOL Win32MemMap::flushView(ULONG offset, ULONG cbFlush)
373{
374 LPVOID lpvBase = (LPVOID)((ULONG)pMapping+offset);
375 MEMORY_BASIC_INFORMATION memInfo;
376 ULONG nrBytesWritten, size;
377 int i;
378
379 if(image) //no flushing for image maps
380 return TRUE;
381
382 dprintf(("Win32MemMap::flushView: %x %x", lpvBase, cbFlush));
383 if(nrMappings == 0)
384 goto parmfail;
385
386 if(cbFlush == 0)
387 cbFlush = mSize;
388
389 if(lpvBase < pMapping || (ULONG)lpvBase+cbFlush > (ULONG)pMapping+mSize)
390 goto parmfail;
391
392 if(mProtFlags & PAGE_READONLY)
393 goto parmfail;
394
395 if(hMemFile == -1)
396 goto success; //TODO: Return an error here?
397
398 while(cbFlush) {
399 if(VirtualQuery((LPSTR)lpvBase, &memInfo, cbFlush) == 0) {
400 dprintf(("Win32MemMap::flushView: VirtualQuery (%x,%x) failed for %x", lpvBase, cbFlush, (ULONG)lpvBase+i*PAGE_SIZE));
401 goto fail;
402 }
403 //If a page (or range of pages) is reserved or write protected, we
404 //won't bother flushing it to disk
405 if(memInfo.State & MEM_COMMIT &&
406 memInfo.AllocationProtect & (PAGE_READWRITE|PAGE_WRITECOPY|PAGE_EXECUTE_READWRITE|PAGE_EXECUTE_WRITECOPY))
407 {//committed and allowed for writing?
408 offset = (ULONG)lpvBase - (ULONG)pMapping;
409 size = memInfo.RegionSize;
410 if(size > cbFlush) {
411 size = cbFlush;
412 }
413 dprintf(("Win32MemMap::flushView for offset %x, size %d", offset, size));
414
415 if(SetFilePointer(hMemFile, offset, NULL, FILE_BEGIN) != offset) {
416 dprintf(("Win32MemMap::flushView: SetFilePointer failed to set pos to %x", offset));
417 goto fail;
418 }
419 if(WriteFile(hMemFile, (LPSTR)lpvBase, size, &nrBytesWritten, NULL) == FALSE) {
420 dprintf(("Win32MemMap::flushView: WriteFile failed for %x", (ULONG)lpvBase));
421 goto fail;
422 }
423 if(nrBytesWritten != size) {
424 dprintf(("Win32MemMap::flushView: WriteFile didn't write all bytes for %x", (ULONG)lpvBase));
425 goto fail;
426 }
427 }
428 lpvBase = (LPVOID)((ULONG)lpvBase + memInfo.RegionSize);
429
430 if(cbFlush < memInfo.RegionSize)
431 break;
432
433 cbFlush -= memInfo.RegionSize;
434 }
435success:
436 return TRUE;
437parmfail:
438 SetLastError(ERROR_INVALID_PARAMETER);
439 return FALSE;
440fail:
441 return FALSE;
442}
443//******************************************************************************
444//******************************************************************************
445Win32MemMap *Win32MemMap::findMap(LPSTR lpszName)
446{
447 if(lpszName == NULL)
448 return NULL;
449
450 globalmapMutex.enter();
451 Win32MemMap *map = memmaps;
452
453 if(map != NULL) {
454 while(map) {
455 if(map->lpszMapName && !strcmp(map->lpszMapName, lpszName))
456 break;
457 map = map->next;
458 }
459 }
460 globalmapMutex.leave();
461 if(!map) dprintf(("Win32MemMap::findMap: couldn't find map %s", lpszName));
462 return map;
463}
464//******************************************************************************
465//******************************************************************************
466Win32MemMap *Win32MemMap::findMap(ULONG address)
467{
468 globalmapMutex.enter();
469 Win32MemMap *map = memmaps;
470
471 if(map != NULL) {
472 while(map) {
473 if(map->pMapping && (ULONG)map->pMapping <= address &&
474 (ULONG)map->pMapping + map->mSize > address)
475 {
476 break;
477 }
478 map = map->next;
479 }
480 }
481 globalmapMutex.leave();
482 return map;
483}
484//******************************************************************************
485//Assumes mutex has been acquired
486//******************************************************************************
487void Win32MemMap::deleteAll()
488{
489 Win32MemMap *map = memmaps, *nextmap;
490 DWORD processId = GetCurrentProcess();
491
492 //delete all maps created by this process
493 while(map) {
494 nextmap = map->next;
495 if(map->getProcessId() == processId) {
496 //Delete map directly for executable images (only used internally)
497 if(map->getImage()) {
498 delete map;
499 }
500 else CloseHandle(memmaps->hMemMap);
501 }
502 else {
503 //delete all views created by this process for this map
504 Win32MemMapView::deleteViews(map);
505 }
506 map = nextmap;
507 }
508}
509//******************************************************************************
510//******************************************************************************
511Win32MemMapView::Win32MemMapView(Win32MemMap *map, ULONG offset, ULONG size,
512 ULONG fdwAccess)
513{
514 LPVOID viewaddr = (LPVOID)((ULONG)map->getMappingAddr()+offset);
515 ULONG accessAttr = 0;
516 Win32MemMapView *tmpview = mapviews;
517
518 errorState = 0;
519 mParentMap = map;
520 mSize = size;
521 mOffset = offset;
522 mProcessId = GetCurrentProcess();
523
524 switch(fdwAccess) {
525 case FILE_MAP_READ:
526 accessAttr = PAG_READ;
527 mfAccess = MEMMAP_ACCESS_READ;
528 break;
529 case FILE_MAP_ALL_ACCESS:
530 case FILE_MAP_WRITE:
531 case FILE_MAP_COPY:
532 accessAttr = (PAG_READ|PAG_WRITE);
533 mfAccess = MEMMAP_ACCESS_READ | MEMMAP_ACCESS_WRITE;
534 break;
535 }
536 if(map->getMemName() != NULL) {
537 //shared memory map, so map it into our address space
538 if(OSLibDosGetNamedSharedMem((LPVOID *)&viewaddr, map->getMemName()) != OSLIB_NOERROR) {
539 dprintf(("new OSLibDosGetNamedSharedMem FAILED"));
540 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
541 errorState = 1;
542 return;
543 }
544 }
545
546 //view == memory mapping for executable images (only used internally)
547 if(map->getImage()) {
548 pMapView = map->getMappingAddr();
549 }
550 else {
551 if(OSLibDosAliasMem(viewaddr, size, &pMapView, accessAttr) != OSLIB_NOERROR) {
552 dprintf(("new OSLibDosAliasMem FAILED"));
553 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
554 errorState = 1;
555 return;
556 }
557 }
558
559 dprintf(("Win32MemMapView::Win32MemMapView: created %x (alias for %x), size %d", pMapView, viewaddr, size));
560
561 globalviewMutex.enter();
562 if(tmpview == NULL || tmpview->getViewAddr() > pMapView) {
563 next = mapviews;
564 mapviews = this;
565 }
566 else {
567 while(tmpview->next) {
568 if(tmpview->next->getViewAddr() > pMapView) {
569 break;
570 }
571 tmpview = tmpview->next;
572 }
573 next = tmpview->next;
574 tmpview->next = this;
575 }
576 globalviewMutex.leave();
577}
578//******************************************************************************
579//******************************************************************************
580Win32MemMapView::~Win32MemMapView()
581{
582 if(errorState != 0)
583 return;
584
585 dprintf(("Win32MemMapView dtor: deleting view %x %x", mOffset, mSize));
586
587 if(mfAccess & MEMMAP_ACCESS_WRITE)
588 mParentMap->flushView(mOffset, mSize);
589
590 //Don't free memory for executable image map views (only used internally)
591 if(!mParentMap->getImage())
592 OSLibDosFreeMem(pMapView);
593
594 globalviewMutex.enter();
595 Win32MemMapView *view = mapviews;
596
597 if(view == this) {
598 mapviews = next;
599 }
600 else {
601 while(view->next) {
602 if(view->next == this)
603 break;
604 view = view->next;
605 }
606 if(view->next) {
607 view->next = next;
608 }
609 else dprintf(("Win32MemMapView::~Win32MemMapView: map not found!! (%x)", this));
610 }
611 globalviewMutex.leave();
612}
613//******************************************************************************
614//******************************************************************************
615void Win32MemMapView::deleteViews(Win32MemMap *map)
616{
617 globalviewMutex.enter();
618 Win32MemMapView *view = mapviews, *nextview;
619
620 if(view != NULL) {
621 while(view) {
622 nextview = view->next;
623 if(view->getParentMap() == map)
624 {
625 globalviewMutex.leave();
626 delete view;
627 globalviewMutex.enter();
628 }
629 view = nextview;
630 }
631 }
632 globalviewMutex.leave();
633}
634//******************************************************************************
635//******************************************************************************
636Win32MemMap *Win32MemMapView::findMapByView(ULONG address, ULONG *offset,
637 ULONG accessType,
638 Win32MemMapView **pView)
639{
640 globalviewMutex.enter();
641 Win32MemMapView *view = mapviews;
642
643 *offset = 0;
644
645 if(view != NULL) {
646 while(view && (ULONG)view->getViewAddr() <= address) {
647 if((ULONG)view->getViewAddr() <= address &&
648 (ULONG)view->getViewAddr() + view->getSize() > address &&
649 view->getAccessFlags() >= accessType)
650 {
651 *offset = view->getOffset() + (address - (ULONG)view->getViewAddr());
652 goto success;
653 }
654 view = view->next;
655 }
656 //failure if we get here
657 view = NULL;
658 }
659success:
660 if(view && !view->getParentMap()->isImageMap())
661 dprintf(("findMapByView %x %x -> %x off %x", address, accessType, view->getViewAddr(), *offset));
662
663 globalviewMutex.leave();
664 if(pView) *pView = view;
665 return (view) ? view->getParentMap() : NULL;
666}
667//******************************************************************************
668//******************************************************************************
669Win32MemMapView *Win32MemMapView::findView(LPVOID address)
670{
671 Win32MemMapView *view = mapviews;
672
673 if(view != NULL) {
674 while(view) {
675 if(view->getViewAddr() == address)
676 {
677 break;
678 }
679 view = view->next;
680 }
681 }
682 return view;
683}
684//******************************************************************************
685//******************************************************************************
686
Note: See TracBrowser for help on using the repository browser.