1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/**
* This program checks if the compiler/RTL does have correct support
* for structured exception handling
*/
#include "test_config.h"
#if defined (ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS)
int ExFilter(EXCEPTION_POINTERS *ep, DWORD code_arg)
{
ACE_DEBUG ((LM_INFO,("In SEH Filter\n")));
ACE_DEBUG ((LM_INFO,("Code param=%d\n"), code_arg));
ACE_DEBUG ((LM_INFO,("\tep->ExceptionRecord->ExceptionCode =%d\n"), ep->ExceptionRecord->ExceptionCode));
ACE_DEBUG ((LM_INFO,("\tep->ExceptionRecord->ExceptionAddress =%@\n"), ep->ExceptionRecord->ExceptionAddress));
if (ep->ExceptionRecord->NumberParameters >= 1)
ACE_DEBUG ((LM_INFO,("\tep->ExceptionRecord->ExceptionInformation[0]=%@\n"), ep->ExceptionRecord->ExceptionInformation[0]));
if (ep->ExceptionRecord->NumberParameters == 2)
ACE_DEBUG ((LM_INFO,("\tep->ExceptionRecord->ExceptionInformation[1]=%@\n"), ep->ExceptionRecord->ExceptionInformation[1]));
return 1;
}
#endif /* ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS */
int
run_main (int, ACE_TCHAR *[])
{
ACE_START_TEST (ACE_TEXT("Compiler_Features_39_Test"));
#if defined (ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS)
ACE_SEH_TRY
{
volatile int* pInt = 0x0000000;
*pInt = 20;
}
ACE_SEH_EXCEPT (ExFilter(GetExceptionInformation(), GetExceptionCode()))
{
ACE_DEBUG ((LM_DEBUG,("In SEH __except\n")));
}
ACE_DEBUG ((LM_DEBUG,("SEH worked\n")));
#else
ACE_DEBUG ((LM_INFO,
ACE_TEXT ("Platform lacks ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS\n")));
#endif /* ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS */
ACE_END_TEST;
return 0;
}
|