Changes between Version 8 and Version 9 of kernel_locks


Ignore:
Timestamp:
Dec 5, 2014, 2:51:47 PM (9 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • kernel_locks

    v8 v9  
    2626
    2727 === void '''_lock_release'''( spin_lock_t * lock ) ===
    28 This function releases the lock. It must always be called after a successful _lock_acquire().
     28This function releases the lock, but cannot be used for lock initialisation. It must always be called after a successful _lock_acquire().
    2929
    3030 === void '''_simple_lock_acquire'''( simple_lock_t * lock ) ===
     
    3232
    3333 === void '''_simple_lock_release'''( simple_lock_t * lock ) ===
    34 This function releases the lock. It must always be called after a successful _simple_lock_acquire().
     34This function releases the lock, and can be used for lock initialisation. It must always be called after a successful _simple_lock_acquire().