summaryrefslogtreecommitdiff
path: root/ace/Memory_Pool.cpp
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-27 19:25:08 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-27 19:25:08 +0000
commit90d90920c117f772d54283b1a0858a63338d5dd9 (patch)
treee9aedfb4a3df6aafac7b633ff05355a5f61ede00 /ace/Memory_Pool.cpp
parent843d454c02e74d928f37cbec18ee9ec6e5e18d32 (diff)
downloadATCD-90d90920c117f772d54283b1a0858a63338d5dd9.tar.gz
ChangeLogTag:Thu Apr 27 10:55:11 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/Memory_Pool.cpp')
-rw-r--r--ace/Memory_Pool.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Memory_Pool.cpp b/ace/Memory_Pool.cpp
index 5b1cf7d68bc..3667ab0749b 100644
--- a/ace/Memory_Pool.cpp
+++ b/ace/Memory_Pool.cpp
@@ -400,12 +400,12 @@ ACE_MMAP_Memory_Pool::init_acquire (size_t nbytes,
int
ACE_MMAP_Memory_Pool::seh_selector (void *ep)
{
- int ecode = ((LPEXCEPTION_POINTERS) ep)->ExceptionRecord->ExceptionCode;
+ int ecode = ((EXCEPTION_POINTERS *) ep)->ExceptionRecord->ExceptionCode;
if (ecode == EXCEPTION_ACCESS_VIOLATION)
{
void * fault_addr = (void *)
- ((LPEXCEPTION_POINTERS) ep)->ExceptionRecord->ExceptionInformation[1];
+ ((EXCEPTION_POINTERS *) ep)->ExceptionRecord->ExceptionInformation[1];
if (this->remap (fault_addr) == 0)
return 1;