Changeset e700970 in mainline for uspace/srv/fs/minixfs/mfs.c


Ignore:
Timestamp:
2011-04-16T14:02:41Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6fcc03a
Parents:
6fc5262
Message:

Add mfs_close() and mfs_open_node() functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/minixfs/mfs.c

    r6fc5262 re700970  
    113113                        mfs_read(callid, &call);
    114114                        break;
     115                case VFS_OUT_OPEN_NODE:
     116                        mfs_open_node(callid, &call);
     117                        break;
     118                case VFS_OUT_CLOSE:
     119                        mfs_close(callid, &call);
     120                        break;
     121                case VFS_OUT_WRITE:
     122                        mfsdebug("write()\n");
     123                        break;
    115124                default:
    116125                        async_answer_0(callid, ENOTSUP);
Note: See TracChangeset for help on using the changeset viewer.