Changeset c20aa06 in mainline for uspace/srv/fs/tmpfs/tmpfs.c


Ignore:
Timestamp:
2009-06-03T19:01:53Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
80e3c69
Parents:
17fd1d4
Message:

implement VFS_OPEN_NODE and VFS_DEVICE (no device handle is returned)
implement no-op VFS_SYNC and VFS_CLOSE

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/tmpfs/tmpfs.c

    r17fd1d4 rc20aa06  
    115115                        tmpfs_truncate(callid, &call);
    116116                        break;
     117                case VFS_CLOSE:
     118                        tmpfs_close(callid, &call);
     119                        break;
    117120                case VFS_DESTROY:
    118121                        tmpfs_destroy(callid, &call);
     122                        break;
     123                case VFS_OPEN_NODE:
     124                        tmpfs_open_node(callid, &call);
     125                        break;
     126                case VFS_DEVICE:
     127                        tmpfs_device(callid, &call);
     128                        break;
     129                case VFS_SYNC:
     130                        tmpfs_sync(callid, &call);
    119131                        break;
    120132                default:
Note: See TracChangeset for help on using the changeset viewer.