Changeset d9e11ff2 in mainline for generic/src
- Timestamp:
- 2006-03-14T14:31:28Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8b1439e
- Parents:
- 5581c45e
- Location:
- generic/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/ipc/ipc.c
r5581c45e rd9e11ff2 191 191 } else { 192 192 if (!(flags & IPC_WAIT_NONBLOCKING)) { 193 /* Wait for event to appear */ 193 194 condvar_wait(&box->cv, &box->mutex); 194 195 continue; 195 196 } 196 if (condvar_trywait(&box->cv, &box->mutex) != ESYNCH_WOULD_BLOCK)197 continue;198 197 request = NULL; 199 198 } -
generic/src/mm/as.c
r5581c45e rd9e11ff2 401 401 */ 402 402 pte = page_mapping_find(as, area->base + i*PAGE_SIZE); 403 if (pte ) {403 if (pte && PTE_VALID(pte)) { 404 404 ASSERT(PTE_PRESENT(pte)); 405 405 frame_free(ADDR2PFN(PTE_GET_FRAME(pte)));
Note:
See TracChangeset
for help on using the changeset viewer.
