Changeset 852b801 in mainline for uspace/srv/vfs/vfs.c


Ignore:
Timestamp:
2009-06-28T18:59:02Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
75160a6
Parents:
4198f9c3
Message:

Introduce VFS_IN_FSTAT and VFS_OUT_STAT.
Provide libc fstat() and devfs_stat().
This functionality replaces VFS_IN_NODE
and VFS_IN/OUT_DEVICE. FAT and TMPFS
still do not implement this and VFS_IN_STAT
and stat() need implementation as well.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs.c

    r4198f9c3 r852b801  
    108108                        vfs_truncate(callid, &call);
    109109                        break;
     110                case VFS_IN_FSTAT:
     111                        vfs_fstat(callid, &call);
     112                        break;
     113                case VFS_IN_STAT:
     114                        vfs_stat(callid, &call);
     115                        break;
    110116                case VFS_IN_MKDIR:
    111117                        vfs_mkdir(callid, &call);
     
    117123                        vfs_rename(callid, &call);
    118124                        break;
    119                 case VFS_IN_DEVICE:
    120                         vfs_device(callid, &call);
    121                         break;
    122125                case VFS_IN_SYNC:
    123126                        vfs_sync(callid, &call);
    124                         break;
    125                 case VFS_IN_NODE:
    126                         vfs_node(callid, &call);
    127127                        break;
    128128                default:
Note: See TracChangeset for help on using the changeset viewer.