Changeset 72bde81 in mainline for uspace/srv/vfs/vfs.c


Ignore:
Timestamp:
2008-01-27T14:59:32Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2db4ac8
Parents:
1fe186f
Message:

Support for mkdir().

File:
1 edited

Legend:

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

    r1fe186f r72bde81  
    106106                        vfs_truncate(callid, &call);
    107107                        break;
    108                 case VFS_UNMOUNT:
    109                 case VFS_CLOSE:
    110                 case VFS_UNLINK:
    111                 case VFS_RENAME:
    112                 case VFS_OPENDIR:
    113                 case VFS_READDIR:
    114                 case VFS_CLOSEDIR:
     108                case VFS_MKDIR:
     109                        vfs_mkdir(callid, &call);
     110                        break;
    115111                default:
    116112                        ipc_answer_0(callid, ENOTSUP);
Note: See TracChangeset for help on using the changeset viewer.