Changeset cad9c72 in mainline for uspace/srv/vfs/vfs.c


Ignore:
Timestamp:
2008-01-08T21:58:58Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
eb27ce5a
Parents:
861e7d1
Message:

Make a distinction between VFS operations that are common to VFS and FS
implementations, operations that are VFS only and operations that are FS
implementations only.

File:
1 edited

Legend:

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

    r861e7d1 rcad9c72  
    103103                        vfs_seek(callid, &call);
    104104                        break;
     105                case VFS_TRUNCATE:
    105106                case VFS_UNMOUNT:
    106                 case VFS_CREATE:
    107107                case VFS_CLOSE:
    108108                case VFS_UNLINK:
    109109                case VFS_RENAME:
     110                case VFS_OPENDIR:
     111                case VFS_READDIR:
     112                case VFS_CLOSEDIR:
    110113                default:
    111114                        ipc_answer_0(callid, ENOTSUP);
Note: See TracChangeset for help on using the changeset viewer.