Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sehsub.c « seh « samples « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 466b2e8e415d08689928a283765cede8378f7ee7 (plain)
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
/*
 * sehsub.c
 *
 * In an attempt to see what might be going on inside CRTDLL, this program
 * walks the exception list after creating a new thread with _beginthread.
 *
 * It turns out that _beginthread DOES install an exception handler, as
 * expected, but this handler is NOT exported by CRTDLL (it is certainly
 * not _except_handler2 or _XcptFilter)... an odd and unpleasant turn of
 * events.
 */

#include <windows.h>
#include <excpt.h>
#include <process.h>

#include "exutil.h"

extern void* __imp__except_handler3;

unsigned
my_thread (void * p)
{
	printf ("In my thread.\n");
	WalkExceptionHandlers();
	return 0;
}

main ()
{
	unsigned long	h;
	unsigned	id;
	printf ("In main.\n");
	WalkExceptionHandlers();

	printf ("Except_handler3 %08x\n", __imp__except_handler3);
	h = _beginthreadex (NULL, 0, my_thread, NULL, 0, &id);

	WaitForSingleObject ((HANDLE) h, INFINITE);
	CloseHandle ((HANDLE) h);
	return;
}