1 /* This file is part of the Linux Trace Toolkit trace reading library
2 * Copyright (C) 2003-2004 Mathieu Desnoyers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License Version 2.1 as published by the Free Software Foundation.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 02111-1307, USA.
22 /* Fast prediction if likely branches */
23 #define likely(x) __builtin_expect(!!(x), 1)
24 #define unlikely(x) __builtin_expect(!!(x), 0)
28 * Check at compile time that something is of a particular type.
29 * Always evaluates to 1 so you may use it easily in comparisons.
31 #define typecheck(type,x) \
34 (void)(&__dummy == &__dummy2); \
38 /* Deal with 32 wrap correctly */
39 #define guint32_after(a,b) \
40 (typecheck(guint32, a) && \
41 typecheck(guint32, b) && \
42 ((gint32)(b) - (gint32)(a) < 0))
43 #define guint32_before(a,b) guint32_after(b,a)
45 #define guint32_after_eq(a,b) \
46 (typecheck(guint32, a) && \
47 typecheck(guint32, b) && \
48 ((gint32)(b) - (gint32)(a) <= 0))
49 #define guint32_before_eq(a,b) guint32_after_eq(b,a)
51 #define __EXPORT __attribute__ ((visibility ("default")))
This page took 0.039381 seconds and 4 git commands to generate.