Atomic - 图1
    原子操作:
    #include <stdint.h>
    用到的函数:

    1. __sync_val_compare_and_swap(&value_, 0, 0);
    2. // __sync_val_compare_and_swap(type *ptr,type oldval, type newval)
    3. // if *ptr==oldval oldval =newval return oldval; else return oldval;
    4. __sync_fetch_and_add(&value_, x);
    5. __sync_lock_test_and_set(&value_, newValue);
    6. typedef detail::AtomicIntegerT<int32_t> AtomicInt32;
    7. typedef detail::AtomicIntegerT<int64_t> AtomicInt64;