2006-09-08 15:43:44 +00:00
|
|
|
#ifndef foopulseatomichfoo
|
|
|
|
|
#define foopulseatomichfoo
|
|
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***
|
|
|
|
|
This file is part of PulseAudio.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-02-13 15:35:19 +00:00
|
|
|
Copyright 2006 Lennart Poettering
|
|
|
|
|
|
2006-09-08 15:43:44 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
published by the Free Software Foundation; either version 2 of the
|
|
|
|
|
License, or (at your option) any later version.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-09-08 15:43:44 +00:00
|
|
|
PulseAudio 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.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-09-08 15:43:44 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
License along with PulseAudio; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2007-09-04 20:00:19 +00:00
|
|
|
/*
|
|
|
|
|
* atomic_ops guarantees us that sizeof(AO_t) == sizeof(void*). It is
|
|
|
|
|
* not guaranteed however, that sizeof(AO_t) == sizeof(size_t).
|
|
|
|
|
* however very likely.
|
|
|
|
|
*
|
|
|
|
|
* For now we do only full memory barriers. Eventually we might want
|
|
|
|
|
* to support more elaborate memory barriers, in which case we will add
|
|
|
|
|
* suffixes to the function names.
|
2006-09-08 15:43:44 +00:00
|
|
|
*
|
2007-09-04 20:00:19 +00:00
|
|
|
* On gcc >= 4.1 we use the builtin atomic functions. otherwise we use
|
|
|
|
|
* libatomic_ops
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 1))
|
|
|
|
|
|
|
|
|
|
/* gcc based implementation */
|
2006-09-08 15:43:44 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
typedef struct pa_atomic {
|
2007-09-04 20:00:19 +00:00
|
|
|
volatile int value;
|
2007-06-11 12:08:37 +00:00
|
|
|
} pa_atomic_t;
|
2006-09-08 15:43:44 +00:00
|
|
|
|
2006-09-09 22:54:11 +00:00
|
|
|
#define PA_ATOMIC_INIT(v) { .value = (v) }
|
|
|
|
|
|
2007-09-04 20:00:19 +00:00
|
|
|
static inline int pa_atomic_load(const pa_atomic_t *a) {
|
|
|
|
|
__sync_synchronize();
|
|
|
|
|
return a->value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void pa_atomic_store(pa_atomic_t *a, int i) {
|
|
|
|
|
a->value = i;
|
|
|
|
|
__sync_synchronize();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns the previously set value */
|
|
|
|
|
static inline int pa_atomic_add(pa_atomic_t *a, int i) {
|
|
|
|
|
return __sync_fetch_and_add(&a->value, i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns the previously set value */
|
|
|
|
|
static inline int pa_atomic_sub(pa_atomic_t *a, int i) {
|
|
|
|
|
return __sync_fetch_and_sub(&a->value, i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns the previously set value */
|
|
|
|
|
static inline int pa_atomic_inc(pa_atomic_t *a) {
|
|
|
|
|
return pa_atomic_add(a, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns the previously set value */
|
|
|
|
|
static inline int pa_atomic_dec(pa_atomic_t *a) {
|
|
|
|
|
return pa_atomic_sub(a, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns non-zero when the operation was successful. */
|
|
|
|
|
static inline int pa_atomic_cmpxchg(pa_atomic_t *a, int old_i, int new_i) {
|
|
|
|
|
return __sync_bool_compare_and_swap(&a->value, old_i, new_i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
typedef struct pa_atomic_ptr {
|
|
|
|
|
volatile long value;
|
|
|
|
|
} pa_atomic_ptr_t;
|
|
|
|
|
|
|
|
|
|
#define PA_ATOMIC_PTR_INIT(v) { .value = (long) (v) }
|
|
|
|
|
|
|
|
|
|
static inline void* pa_atomic_ptr_load(const pa_atomic_ptr_t *a) {
|
|
|
|
|
__sync_synchronize();
|
|
|
|
|
return (void*) a->value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void pa_atomic_ptr_store(pa_atomic_ptr_t *a, void *p) {
|
|
|
|
|
a->value = (long) p;
|
|
|
|
|
__sync_synchronize();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline int pa_atomic_ptr_cmpxchg(pa_atomic_ptr_t *a, void *old_p, void* new_p) {
|
|
|
|
|
return __sync_bool_compare_and_swap(&a->value, (long) old_p, (long) new_p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
/* libatomic_ops based implementation */
|
|
|
|
|
|
|
|
|
|
#include <atomic_ops.h>
|
|
|
|
|
|
|
|
|
|
typedef struct pa_atomic {
|
|
|
|
|
volatile AO_t value;
|
|
|
|
|
} pa_atomic_t;
|
|
|
|
|
|
|
|
|
|
#define PA_ATOMIC_INIT(v) { .value = (v) }
|
2006-09-08 15:43:44 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
static inline int pa_atomic_load(const pa_atomic_t *a) {
|
2006-09-08 15:43:44 +00:00
|
|
|
return (int) AO_load_full((AO_t*) &a->value);
|
|
|
|
|
}
|
|
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
static inline void pa_atomic_store(pa_atomic_t *a, int i) {
|
2006-09-08 15:43:44 +00:00
|
|
|
AO_store_full(&a->value, (AO_t) i);
|
|
|
|
|
}
|
|
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
static inline int pa_atomic_add(pa_atomic_t *a, int i) {
|
2006-09-08 15:43:44 +00:00
|
|
|
return AO_fetch_and_add_full(&a->value, (AO_t) i);
|
|
|
|
|
}
|
|
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
static inline int pa_atomic_sub(pa_atomic_t *a, int i) {
|
2007-05-27 20:38:14 +00:00
|
|
|
return AO_fetch_and_add_full(&a->value, (AO_t) -i);
|
|
|
|
|
}
|
|
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
static inline int pa_atomic_inc(pa_atomic_t *a) {
|
2006-09-08 15:43:44 +00:00
|
|
|
return AO_fetch_and_add1_full(&a->value);
|
|
|
|
|
}
|
|
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
static inline int pa_atomic_dec(pa_atomic_t *a) {
|
2006-09-08 15:43:44 +00:00
|
|
|
return AO_fetch_and_sub1_full(&a->value);
|
|
|
|
|
}
|
|
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
static inline int pa_atomic_cmpxchg(pa_atomic_t *a, int old_i, int new_i) {
|
2006-09-08 15:43:44 +00:00
|
|
|
return AO_compare_and_swap_full(&a->value, old_i, new_i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
typedef struct pa_atomic_ptr {
|
|
|
|
|
volatile AO_t value;
|
|
|
|
|
} pa_atomic_ptr_t;
|
|
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
#define PA_ATOMIC_PTR_INIT(v) { .value = (AO_t) (v) }
|
|
|
|
|
|
2006-09-08 15:43:44 +00:00
|
|
|
static inline void* pa_atomic_ptr_load(const pa_atomic_ptr_t *a) {
|
|
|
|
|
return (void*) AO_load_full((AO_t*) &a->value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void pa_atomic_ptr_store(pa_atomic_ptr_t *a, void *p) {
|
|
|
|
|
AO_store_full(&a->value, (AO_t) p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline int pa_atomic_ptr_cmpxchg(pa_atomic_ptr_t *a, void *old_p, void* new_p) {
|
|
|
|
|
return AO_compare_and_swap_full(&a->value, (AO_t) old_p, (AO_t) new_p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
2007-09-04 20:00:19 +00:00
|
|
|
|
|
|
|
|
#endif
|