remove GenericVectorTests from rsp (#17366)
[mono-project.git] / mono / metadata / gc-stats.c
blob5bd61a766d58fd4fe545602c4ee72bc90120c865
1 /**
2 * \file
3 * GC statistics.
5 * Copyright (C) 2015 Xamarin Inc
7 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
8 */
10 #include "mono/sgen/gc-internal-agnostic.h"
13 * Due to a bug in the linker on Darwin we need to initialize this struct, or there will be
14 * "undefined symbol" errors.
16 #if defined(__APPLE__)
17 GCStats mono_gc_stats = {};
18 #else
19 GCStats mono_gc_stats;
20 #endif