Changeset a49a1a1 in mainline
- Timestamp:
- 2010-06-22T11:35:06Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 402eda5
- Parents:
- ee42e43
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/synch/futex.c
ree42e43 ra49a1a1 150 150 uintptr_t paddr; 151 151 pte_t *t; 152 ipl_t ipl;153 154 ipl = interrupts_disable();155 152 156 153 /* … … 161 158 if (!t || !PTE_VALID(t) || !PTE_PRESENT(t)) { 162 159 page_table_unlock(AS, true); 163 interrupts_restore(ipl);164 160 return (unative_t) ENOENT; 165 161 } … … 167 163 page_table_unlock(AS, true); 168 164 169 interrupts_restore(ipl);170 171 165 futex = futex_find(paddr); 172 166
Note:
See TracChangeset
for help on using the changeset viewer.