blob: b2d219c9e0459ae35c3a33e4ac5d12bdc9464e03 (
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
|
/*
* mthr_stub.c
*
* Implement Mingw thread-support stubs for single-threaded C++ apps.
*
* This file is used by if gcc is built with --enable-threads=win32 and
* iff gcc does *NOT* use -mthreads option.
*
* The -mthreads implementation is in mthr.c.
*
* Created by Mumit Khan <khan@nanotech.wisc.edu>
*
*/
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#undef WIN32_LEAN_AND_MEAN
#include <assert.h>
/*
* __mingwthr_register_key_dtor (DWORD key, void (*dtor) (void *))
*
* Public interface called by C++ exception handling mechanism in
* libgcc (cf: __gthread_key_create).
*
* THIS SHOULD NEVER BE CALLED!
*
*/
int
__mingwthr_key_dtor (DWORD key, void (*dtor) (void *))
{
assert (0);
/* NOTREACHED */
return 0;
}
|