| 488 | } |
| 489 | |
| 490 | int fastlock_unlock_recursive(struct fastlock *lock) |
| 491 | { |
| 492 | int rval = lock->m_depth; |
| 493 | lock->m_depth = 1; |
| 494 | fastlock_unlock(lock); |
| 495 | return rval; |
| 496 | } |
| 497 | |
| 498 | void fastlock_lock_recursive(struct fastlock *lock, int nesting) |
| 499 | { |
no test coverage detected