API Version: 2.0
Library Version: 2.72
#define G_UNLIKELY ( expr )
Hints the compiler that the expression is unlikely to evaluate to a true value. The compiler may use this information for optimizations.
if (G_UNLIKELY (random () == 1)) g_print ("a random one");
expr
-
The expression.