Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/atomic.h

    r33c4f72 r09a0bd4a  
    4141
    4242ATOMIC static inline void atomic_set(atomic_t *val, atomic_count_t i)
    43     WRITES(&val->count)
    44     REQUIRES_EXTENT_MUTABLE(val)
    4543{
    4644        val->count = i;
     
    4846
    4947ATOMIC static inline atomic_count_t atomic_get(atomic_t *val)
    50     REQUIRES_EXTENT_MUTABLE(val)
    5148{
    5249        return val->count;
Note: See TracChangeset for help on using the changeset viewer.