Changes in uspace/srv/vfs/vfs.c [2b88074b:19f857a] in mainline


Ignore:
File:
1 edited

Legend:

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

    r2b88074b r19f857a  
    4242#include <stdio.h>
    4343#include <bool.h>
    44 #include <string.h>
     44#include <str.h>
    4545#include <as.h>
    4646#include <atomic.h>
     
    7373                ipc_callid_t callid = async_get_call(&call);
    7474               
    75                 fs_handle_t fs_handle;
    76                 int phone;
    77                
    7875                switch (IPC_GET_METHOD(call)) {
    7976                case IPC_M_PHONE_HUNGUP:
     
    8683                case VFS_IN_MOUNT:
    8784                        vfs_mount(callid, &call);
     85                        break;
     86                case VFS_IN_UNMOUNT:
     87                        vfs_unmount(callid, &call);
    8888                        break;
    8989                case VFS_IN_OPEN:
     
    134134        }
    135135       
    136         /* TODO: cleanup after the client */
     136        vfs_files_done();
    137137}
    138138
Note: See TracChangeset for help on using the changeset viewer.