Changeset 759ea0d in mainline for kernel/generic/src/synch/futex.c
- Timestamp:
- 2014-11-23T10:09:32Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 235d31d
- Parents:
- 21373712
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/synch/futex.c
r21373712 r759ea0d 288 288 static bool find_futex_paddr(uintptr_t uaddr, uintptr_t *paddr) 289 289 { 290 page_table_lock(AS, false); 290 291 spinlock_lock(&futex_ht_lock); 291 page_table_lock(AS, false);292 292 293 293 bool found = false; … … 299 299 } 300 300 301 spinlock_unlock(&futex_ht_lock); 301 302 page_table_unlock(AS, false); 302 spinlock_unlock(&futex_ht_lock);303 303 304 304 return found;
Note:
See TracChangeset
for help on using the changeset viewer.