Return TRUE from mono_gc_dllmain
[mono.git] / mono / metadata / sgen-os-posix.c
1 /*
2  * sgen-os-posix.c: Simple generational GC.
3  *
4  * Author:
5  *      Paolo Molaro (lupus@ximian.com)
6  *      Mark Probst (mprobst@novell.com)
7  *      Geoff Norton (gnorton@novell.com)
8  *
9  * Copyright 2010 Novell, Inc (http://www.novell.com)
10  *
11  * Permission is hereby granted, free of charge, to any person obtaining
12  * a copy of this software and associated documentation files (the
13  * "Software"), to deal in the Software without restriction, including
14  * without limitation the rights to use, copy, modify, merge, publish,
15  * distribute, sublicense, and/or sell copies of the Software, and to
16  * permit persons to whom the Software is furnished to do so, subject to
17  * the following conditions:
18  * 
19  * The above copyright notice and this permission notice shall be
20  * included in all copies or substantial portions of the Software.
21  * 
22  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29  */
30
31 #include "config.h"
32 #ifdef HAVE_SGEN_GC
33 #include <glib.h>
34 #include "metadata/gc-internal.h"
35 #include "metadata/sgen-gc.h"
36 #include "metadata/sgen-archdep.h"
37 #include "metadata/object-internals.h"
38
39 #if !defined(__MACH__) && !MONO_MACH_ARCH_SUPPORTED
40 int
41 mono_sgen_thread_handshake (int signum)
42 {
43         int count, i, result;
44         SgenThreadInfo **thread_table;
45         SgenThreadInfo *info;
46         pthread_t me = pthread_self ();
47
48         thread_table = mono_sgen_get_thread_table ();
49         count = 0;
50         for (i = 0; i < THREAD_HASH_SIZE; ++i) {
51                 for (info = thread_table [i]; info; info = info->next) {
52                         if (ARCH_THREAD_EQUALS (info->id, me)) {
53                                 continue;
54                         }
55                         /*if (signum == suspend_signal_num && info->stop_count == global_stop_count)
56                                 continue;*/
57                         result = pthread_kill (info->id, signum);
58                         if (result == 0) {
59                                 count++;
60                         } else {
61                                 info->skip = 1;
62                         }
63                 }
64         }
65
66         mono_sgen_wait_for_suspend_ack (count);
67
68         return count;
69 }
70 #endif
71 #endif