X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Funit-tests%2Ftest-conc-hashtable.c;h=32d859c50d56cee18c92a9518db37a9c762a0597;hb=0db5f5ad0edd151e472c0742e978234d9bc6fa1c;hp=23865ad88441b185637df6aec6dc1d094e3586d6;hpb=96b523de70179f1840c022f067c5509c222f2a05;p=mono.git diff --git a/mono/unit-tests/test-conc-hashtable.c b/mono/unit-tests/test-conc-hashtable.c index 23865ad8844..32d859c50d5 100644 --- a/mono/unit-tests/test-conc-hashtable.c +++ b/mono/unit-tests/test-conc-hashtable.c @@ -3,18 +3,7 @@ * * Copyright (C) 2014 Xamarin Inc * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License 2.0 as published by the Free Software Foundation; - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License 2.0 along with this library; if not, write to the Free - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * Licensed under the MIT license. See LICENSE file in the project root for full license information. */ #include "config.h" @@ -328,14 +317,25 @@ benchmark_glib (void) g_hash_table_destroy (h); } +static void +thread_state_init (MonoThreadUnwindState *ctx) +{ +} + + int main (void) { MonoThreadInfoCallbacks cb = { NULL }; + MonoThreadInfoRuntimeCallbacks ticallbacks; int res = 0; CHECKED_MONO_INIT (); mono_threads_init (&cb, sizeof (MonoThreadInfo)); + memset (&ticallbacks, 0, sizeof (ticallbacks)); + ticallbacks.thread_state_init = thread_state_init; + mono_threads_runtime_init (&ticallbacks); + mono_thread_info_attach ((gpointer)&cb); // benchmark_conc ();