7ba2c03f1ccf5aae43992e7d625a8006de9a567b
[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, result;
44         SgenThreadInfo *info;
45         pthread_t me = pthread_self ();
46
47         count = 0;
48         FOREACH_THREAD (info) {
49                 if (ARCH_THREAD_EQUALS (info->id, me)) {
50                         continue;
51                 }
52                 /*if (signum == suspend_signal_num && info->stop_count == global_stop_count)
53                         continue;*/
54                 result = pthread_kill (info->id, signum);
55                 if (result == 0) {
56                         count++;
57                 } else {
58                         info->skip = 1;
59                 }
60         } END_FOREACH_THREAD
61
62         mono_sgen_wait_for_suspend_ack (count);
63
64         return count;
65 }
66 #endif
67 #endif