diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-04-27 19:25:08 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-04-27 19:25:08 +0000 |
commit | 90d90920c117f772d54283b1a0858a63338d5dd9 (patch) | |
tree | e9aedfb4a3df6aafac7b633ff05355a5f61ede00 /ace/Memory_Pool.cpp | |
parent | 843d454c02e74d928f37cbec18ee9ec6e5e18d32 (diff) | |
download | ATCD-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.cpp | 4 |
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; |