Changes in uspace/srv/vfs/vfs.h [e2ab36f1:15f3c3f] in mainline


Ignore:
File:
1 edited

Legend:

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

    re2ab36f1 r15f3c3f  
    4141#include <bool.h>
    4242#include <ipc/vfs.h>
    43 #include <task.h>
    4443
    4544#ifndef dprintf
     
    176175extern int vfs_lookup_internal(char *, int, vfs_lookup_res_t *,
    177176    vfs_pair_t *, ...);
     177extern int vfs_open_node_internal(vfs_lookup_res_t *);
    178178
    179179extern bool vfs_nodes_init(void);
     
    189189extern void vfs_client_data_destroy(void *);
    190190
    191 extern void vfs_pass_handle(task_id_t, task_id_t, int);
    192 extern int vfs_wait_handle_internal(void);
    193 
    194191extern vfs_file_t *vfs_file_get(int);
    195192extern void vfs_file_put(vfs_file_t *);
     
    200197extern void vfs_node_addref(vfs_node_t *);
    201198extern void vfs_node_delref(vfs_node_t *);
    202 extern int vfs_open_node_remote(vfs_node_t *);
    203199
    204200extern void vfs_register(ipc_callid_t, ipc_call_t *);
     
    206202extern void vfs_unmount(ipc_callid_t, ipc_call_t *);
    207203extern void vfs_open(ipc_callid_t, ipc_call_t *);
     204extern void vfs_open_node(ipc_callid_t, ipc_call_t *);
    208205extern void vfs_sync(ipc_callid_t, ipc_call_t *);
    209206extern void vfs_dup(ipc_callid_t, ipc_call_t *);
     
    218215extern void vfs_unlink(ipc_callid_t, ipc_call_t *);
    219216extern void vfs_rename(ipc_callid_t, ipc_call_t *);
    220 extern void vfs_wait_handle(ipc_callid_t, ipc_call_t *);
    221217
    222218#endif
Note: See TracChangeset for help on using the changeset viewer.