Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros
sync_bitops.h File Reference
#include <asm/bitops.h>
#include <asm/system.h>

Go to the source code of this file.

Macros

#define sync_set_bit(nr, p)   _set_bit(nr, p)
 
#define sync_clear_bit(nr, p)   _clear_bit(nr, p)
 
#define sync_change_bit(nr, p)   _change_bit(nr, p)
 
#define sync_test_and_set_bit(nr, p)   _test_and_set_bit(nr, p)
 
#define sync_test_and_clear_bit(nr, p)   _test_and_clear_bit(nr, p)
 
#define sync_test_and_change_bit(nr, p)   _test_and_change_bit(nr, p)
 
#define sync_test_bit(nr, addr)   test_bit(nr, addr)
 
#define sync_cmpxchg   cmpxchg
 

Macro Definition Documentation

#define sync_change_bit (   nr,
  p 
)    _change_bit(nr, p)

Definition at line 19 of file sync_bitops.h.

#define sync_clear_bit (   nr,
  p 
)    _clear_bit(nr, p)

Definition at line 18 of file sync_bitops.h.

#define sync_cmpxchg   cmpxchg

Definition at line 24 of file sync_bitops.h.

#define sync_set_bit (   nr,
  p 
)    _set_bit(nr, p)

Definition at line 17 of file sync_bitops.h.

#define sync_test_and_change_bit (   nr,
  p 
)    _test_and_change_bit(nr, p)

Definition at line 22 of file sync_bitops.h.

#define sync_test_and_clear_bit (   nr,
  p 
)    _test_and_clear_bit(nr, p)

Definition at line 21 of file sync_bitops.h.

#define sync_test_and_set_bit (   nr,
  p 
)    _test_and_set_bit(nr, p)

Definition at line 20 of file sync_bitops.h.

#define sync_test_bit (   nr,
  addr 
)    test_bit(nr, addr)

Definition at line 23 of file sync_bitops.h.