2012-02-06 15:11:43 -05:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
2008-12-31 18:57:36 -05:00
|
|
|
/* NetworkManager -- Network link manager
|
|
|
|
|
*
|
|
|
|
|
* Dan Williams <dcbw@redhat.com>
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
*
|
2011-10-28 11:30:26 -05:00
|
|
|
* (C) Copyright 2008 - 2011 Red Hat, Inc.
|
2008-12-31 18:57:36 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef NM_GLIB_COMPAT_H
|
|
|
|
|
#define NM_GLIB_COMPAT_H
|
|
|
|
|
|
2012-02-07 11:20:57 +01:00
|
|
|
|
2008-12-31 18:57:36 -05:00
|
|
|
#include <glib.h>
|
2012-07-02 13:20:21 -05:00
|
|
|
#include <glib-object.h>
|
2008-12-31 18:57:36 -05:00
|
|
|
|
2013-02-24 13:01:08 +01:00
|
|
|
#include "nm-gvaluearray-compat.h"
|
|
|
|
|
|
2012-10-22 12:36:09 -05:00
|
|
|
#if !GLIB_CHECK_VERSION(2,34,0)
|
|
|
|
|
static inline void
|
|
|
|
|
g_type_ensure (GType type)
|
|
|
|
|
{
|
|
|
|
|
if (G_UNLIKELY (type == (GType)-1))
|
|
|
|
|
g_error ("can't happen");
|
|
|
|
|
}
|
2013-04-03 12:56:13 -04:00
|
|
|
|
|
|
|
|
#define g_clear_pointer(pp, destroy) \
|
|
|
|
|
G_STMT_START { \
|
|
|
|
|
G_STATIC_ASSERT (sizeof *(pp) == sizeof (gpointer)); \
|
|
|
|
|
/* Only one access, please */ \
|
|
|
|
|
gpointer *_pp = (gpointer *) (pp); \
|
|
|
|
|
gpointer _p; \
|
|
|
|
|
/* This assignment is needed to avoid a gcc warning */ \
|
|
|
|
|
GDestroyNotify _destroy = (GDestroyNotify) (destroy); \
|
|
|
|
|
\
|
|
|
|
|
(void) (0 ? (gpointer) *(pp) : 0); \
|
|
|
|
|
do \
|
|
|
|
|
_p = g_atomic_pointer_get (_pp); \
|
|
|
|
|
while G_UNLIKELY (!g_atomic_pointer_compare_and_exchange (_pp, _p, NULL)); \
|
|
|
|
|
\
|
|
|
|
|
if (_p) \
|
|
|
|
|
_destroy (_p); \
|
|
|
|
|
} G_STMT_END
|
|
|
|
|
|
2012-10-22 12:36:09 -05:00
|
|
|
#endif
|
|
|
|
|
|
2008-12-31 18:57:36 -05:00
|
|
|
#endif /* NM_GLIB_COMPAT_H */
|