Changeset 18525c5 in mainline
- Timestamp:
- 2007-10-04T13:00:10Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1c38445
- Parents:
- 116d3f6f
- Location:
- uspace
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/async.c
r116d3f6f r18525c5 519 519 if ((callid & IPC_CALLID_NOTIFICATION)) { 520 520 in_interrupt_handler = 1; 521 (*interrupt_received)(callid, call);521 (*interrupt_received)(callid, call); 522 522 in_interrupt_handler = 0; 523 523 return; -
uspace/srv/vfs/vfs.c
r116d3f6f r18525c5 94 94 case VFS_REGISTER: 95 95 vfs_register(callid, &call); 96 keep_on_going = false; 96 97 break; 97 98 case VFS_MOUNT: -
uspace/srv/vfs/vfs_mount.c
r116d3f6f r18525c5 218 218 vfs_release_phone(phone); 219 219 220 if ((rc1 == EOK) && (rc2 == EOK)) 221 ipc_answer_fast(rid, EOK, 0, 0); 222 else if (rc1 != EOK) 220 if (rc2 == EOK) 223 221 ipc_answer_fast(rid, rc1, 0, 0); 222 else if (rc1 == EOK) 223 ipc_answer_fast(rid, rc2, 0, 0); 224 224 else 225 ipc_answer_fast(rid, rc 2, 0, 0);225 ipc_answer_fast(rid, rc1, 0, 0); 226 226 } 227 227
Note:
See TracChangeset
for help on using the changeset viewer.