Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/locks.hfa

    r7636fcc rbbe3719  
    177177};
    178178
    179 static inline void ?{}(fast_lock & this) __attribute__((deprecated("use linear_backoff_then_block_lock instead")));
    180179static inline void ?{}(fast_lock & this) { this.owner = 0p; }
    181180
     
    185184}
    186185
    187 static inline void lock( fast_lock & this ) __attribute__((deprecated("use linear_backoff_then_block_lock instead"), artificial));
     186static inline void lock( fast_lock & this ) __attribute__((artificial));
    188187static inline void lock( fast_lock & this ) {
    189188        thread$ * thrd = active_thread();
     
    196195}
    197196
    198 static inline bool try_lock( fast_lock & this ) __attribute__((deprecated("use linear_backoff_then_block_lock instead"), artificial));
     197static inline bool try_lock( fast_lock & this ) __attribute__((artificial));
    199198static inline bool try_lock ( fast_lock & this ) {
    200199        thread$ * thrd = active_thread();
     
    203202}
    204203
    205 static inline thread$ * unlock( fast_lock & this ) __attribute__((deprecated("use linear_backoff_then_block_lock instead"), artificial));
     204static inline thread$ * unlock( fast_lock & this ) __attribute__((artificial));
    206205static inline thread$ * unlock( fast_lock & this ) {
    207206        /* paranoid */ verify(active_thread() == this.owner);
Note: See TracChangeset for help on using the changeset viewer.