[sgen] Evacuate from emptier blocks to fuller ones
[mono.git] / mono / io-layer / io-trace.h
1 /*
2  * io-trace.h: tracing macros
3  *
4  * Authors:
5  *  Marek Habersack <grendel@twistedcode.net>
6  *
7  * Copyright 2016 Xamarin, Inc (http://xamarin.com/)
8  */
9
10 #ifndef __IO_TRACE_H
11
12 #ifdef DISABLE_IO_LAYER_TRACE
13 #define MONO_TRACE(...)
14 #else
15 #define MONO_TRACE(...) mono_trace (__VA_ARGS__)
16 #endif
17
18 #endif