Changeset 41202a9 in mainline for uspace/srv/fs/minixfs/mfs.c
- Timestamp:
- 2011-03-26T10:38:09Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7cb975e
- Parents:
- 54caa41b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/minixfs/mfs.c
r54caa41b r41202a9 94 94 95 95 callid = async_get_call(&call); 96 switch (IPC_GET_IMETHOD(call)) { 96 int method = IPC_GET_IMETHOD(call); 97 98 mfsdebug(NAME "method = %d\n", method); 99 switch (method) { 97 100 case IPC_M_PHONE_HUNGUP: 98 101 return; … … 108 111 break; 109 112 case VFS_OUT_LOOKUP: 113 mfsdebug("lookup called\n"); 110 114 mfs_lookup(callid, &call); 111 115 break;
Note:
See TracChangeset
for help on using the changeset viewer.