Ignore:
Timestamp:
Feb 14, 2018, 3:40:19 PM (6 years ago)
Author:
alain
Message:

blip

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/libk/remote_rwlock.c

    r423 r433  
    4141    hal_remote_sw ( XPTR( lock_cxy , &lock_ptr->count )   , 0 );
    4242
    43 #if CONFIG_LOCKS_DEBUG
     43#if CONFIG_DEBUG_LOCKS
    4444    hal_remote_swd( XPTR( lock_cxy , &lock_ptr->owner )   , XPTR_NULL );
    4545    xlist_entry_init( XPTR( lock_cxy , &lock_ptr->list ) );
     
    8686    thread_ptr->remote_locks++;
    8787
    88 #if CONFIG_LOCKS_DEBUG
     88#if CONFIG_DEBUG_LOCKS
    8989    xlist_add_first( XPTR( local_cxy , &thread_ptr->xlocks_root ) ,
    9090                     XPTR( lock_cxy ,  &lock_ptr->list ) );
     
    126126        thread_ptr->remote_locks--;
    127127
    128 #if CONFIG_LOCKS_DEBUG
     128#if CONFIG_DEBUG_LOCKS
    129129    xlist_unlink( XPTR( lock_cxy , &lock_ptr->list ) );
    130130#endif
     
    176176    }
    177177
    178 #if CONFIG_LOCKS_DEBUG
     178#if CONFIG_DEBUG_LOCKS
    179179    hal_remote_swd( XPTR( lock_cxy  , &lock_ptr->owner ) ,
    180180                    XPTR( local_cxy , thread_ptr ) );
Note: See TracChangeset for help on using the changeset viewer.