Merge pull request #114 from XTZGZoReX/master
[mono.git] / mono / utils / mono-threads-windows.c
1 /*
2  * mono-threads-windows.c: Low-level threading, windows version
3  *
4  * Author:
5  *      Rodrigo Kumpera (kumpera@gmail.com)
6  *
7  * (C) 2011 Novell, Inc
8  */
9
10 #include "config.h"
11
12 #if defined(HOST_WIN32)
13
14 #include <mono/utils/mono-threads.h>
15
16
17 void
18 mono_threads_init_platform (void)
19 {
20 }
21
22 void
23 mono_threads_core_interrupt (MonoThreadInfo *info)
24 {
25         g_assert (0);
26 }
27
28 void
29 mono_threads_core_self_suspend (MonoThreadInfo *info)
30 {
31         g_assert (0);
32 }
33
34 gboolean
35 mono_threads_core_suspend (MonoThreadInfo *info)
36 {
37         g_assert (0);
38 }
39
40 gboolean
41 mono_threads_core_resume (MonoThreadInfo *info)
42 {
43         g_assert (0);
44 }
45
46 void
47 mono_threads_platform_register (MonoThreadInfo *info)
48 {
49 }
50
51 void
52 mono_threads_platform_free (MonoThreadInfo *info)
53 {
54 }
55
56 #endif