Changes between Version 5 and Version 6 of library_locks
- Timestamp:
- Dec 2, 2014, 6:15:41 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
library_locks
v5 v6 24 24 * '''lock''' : pointer on the user_lock_t structure. 25 25 26 === '''void lock_acquire'''( giet_lock_t * lock ) ===26 === '''void lock_acquire'''( user_lock_t * lock ) === 27 27 This blocking function returns only when the lock has been successfully taken. 28 28 * '''lock''' : pointer on the user_lock_t structure. 29 29 30 === '''void lock_release'''( giet_lock_t * lock ) ===30 === '''void lock_release'''( user_lock_t * lock ) === 31 31 This function releases the lock. It must be called by a task after a successful lock_acquire(). 32 32 * '''lock''' : pointer on the user_lock_t structure.