Changeset 086290d in mainline for uspace/srv/fs/locfs/locfs_ops.c
- Timestamp:
- 2011-09-19T08:56:43Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 26e7d6d, a96a982, ac2c3f8f
- Parents:
- 45a9cf4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/locfs/locfs_ops.c
r45a9cf4 r086290d 593 593 sysarg_t rc; 594 594 async_wait_for(msg, &rc); 595 596 /* Do not propagate EHANGUP back to VFS. */ 597 if ((int) rc == EHANGUP) 598 rc = ENOTSUP; 595 599 596 600 *rbytes = IPC_GET_ARG1(answer); … … 655 659 sysarg_t rc; 656 660 async_wait_for(msg, &rc); 661 662 /* Do not propagate EHANGUP back to VFS. */ 663 if ((int) rc == EHANGUP) 664 rc = ENOTSUP; 657 665 658 666 *wbytes = IPC_GET_ARG1(answer);
Note:
See TracChangeset
for help on using the changeset viewer.