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


Ignore:
Timestamp:
2009-06-03T19:01:53Z (15 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/fat/fat.c

    r17fd1d4 rc20aa06  
    108108                        fat_truncate(callid, &call);
    109109                        break;
     110                case VFS_CLOSE:
     111                        fat_close(callid, &call);
     112                        break;
    110113                case VFS_DESTROY:
    111114                        fat_destroy(callid, &call);
     115                        break;
     116                case VFS_OPEN_NODE:
     117                        fat_open_node(callid, &call);
     118                        break;
     119                case VFS_DEVICE:
     120                        fat_device(callid, &call);
     121                        break;
     122                case VFS_SYNC:
     123                        fat_sync(callid, &call);
    112124                        break;
    113125                default:
Note: See TracChangeset for help on using the changeset viewer.