Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Functions
cmpxchg.h File Reference
#include <linux/irqflags.h>
#include <asm/assembler.h>
#include <asm/dcache_clear.h>
#include <asm-generic/cmpxchg-local.h>

Go to the source code of this file.

Macros

#define xchg(ptr, x)   ((__typeof__(*(ptr)))__xchg((unsigned long)(x), (ptr), sizeof(*(ptr))))
 
#define xchg_local(ptr, x)
 
#define __HAVE_ARCH_CMPXCHG   1
 
#define cmpxchg(ptr, o, n)
 
#define cmpxchg_local(ptr, o, n)
 
#define cmpxchg64_local(ptr, o, n)   __cmpxchg64_local_generic((ptr), (o), (n))
 

Functions

void __xchg_called_with_bad_pointer (void)
 
void __cmpxchg_called_with_bad_pointer (void)
 

Macro Definition Documentation

#define __HAVE_ARCH_CMPXCHG   1

Definition at line 110 of file cmpxchg.h.

#define cmpxchg (   ptr,
  o,
  n 
)
Value:
((__typeof__(*(ptr))) __cmpxchg((ptr), (unsigned long)(o), \
(unsigned long)(n), sizeof(*(ptr))))

Definition at line 192 of file cmpxchg.h.

#define cmpxchg64_local (   ptr,
  o,
  n 
)    __cmpxchg64_local_generic((ptr), (o), (n))

Definition at line 219 of file cmpxchg.h.

#define cmpxchg_local (   ptr,
  o,
  n 
)
Value:
((__typeof__(*(ptr)))__cmpxchg_local((ptr), (unsigned long)(o), \
(unsigned long)(n), sizeof(*(ptr))))

Definition at line 216 of file cmpxchg.h.

#define xchg (   ptr,
  x 
)    ((__typeof__(*(ptr)))__xchg((unsigned long)(x), (ptr), sizeof(*(ptr))))

Definition at line 67 of file cmpxchg.h.

#define xchg_local (   ptr,
  x 
)
Value:
((__typeof__(*(ptr)))__xchg_local((unsigned long)(x), (ptr), \
sizeof(*(ptr))))

Definition at line 106 of file cmpxchg.h.

Function Documentation

void __cmpxchg_called_with_bad_pointer ( void  )
void __xchg_called_with_bad_pointer ( void  )