~ubuntu-branches/ubuntu/utopic/rhythmbox/utopic-proposed

« back to all changes in this revision

Viewing changes to lib/rb-atomic.h

Tags: upstream-0.9.2
ImportĀ upstreamĀ versionĀ 0.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* 
2
 
 * arch-tag: Definitions for atomic integers for Rhythmbox
3
 
 * Copyright (C) 2002, 2003  Red Hat, Inc.
4
 
 * Copyright (C) 2003 CodeFactory AB
5
 
 *
6
 
 * Licensed under the Academic Free License version 1.2
7
 
 * 
8
 
 * This program is free software; you can redistribute it and/or modify
9
 
 * it under the terms of the GNU General Public License as published by
10
 
 * the Free Software Foundation; either version 2 of the License, or
11
 
 * (at your option) any later version.
12
 
 *
13
 
 * This program is distributed in the hope that it will be useful,
14
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
 * GNU General Public License for more details.
17
 
 * 
18
 
 * You should have received a copy of the GNU General Public License
19
 
 * along with this program; if not, write to the Free Software
20
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21
 
 *
22
 
 */
23
 
 
24
 
#ifndef RB_ATOMIC_H
25
 
#define RB_ATOMIC_H
26
 
 
27
 
#include "config.h"
28
 
#include <glib.h>
29
 
 
30
 
G_BEGIN_DECLS
31
 
 
32
 
#ifdef HAVE_GTK_2_3
33
 
 
34
 
typedef gint32 RBAtomic;
35
 
#define rb_atomic_inc(atomic) g_atomic_int_exchange_and_add((atomic), 1)
36
 
#define rb_atomic_dec(atomic) g_atomic_int_exchange_and_add((atomic), -1)
37
 
 
38
 
#else /* HAVE_GTK_2_3 */
39
 
 
40
 
typedef struct RBAtomic RBAtomic;
41
 
struct RBAtomic
42
 
{
43
 
  volatile gint32 value;
44
 
};
45
 
 
46
 
gint32 rb_atomic_inc (RBAtomic *atomic);
47
 
gint32 rb_atomic_dec (RBAtomic *atomic);
48
 
 
49
 
#endif /* HAVE_GTK_2_3 */
50
 
 
51
 
G_END_DECLS
52
 
 
53
 
#endif