Changes in uspace/srv/vfs/vfs.h [e2ab36f1:15f3c3f] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.h
re2ab36f1 r15f3c3f 41 41 #include <bool.h> 42 42 #include <ipc/vfs.h> 43 #include <task.h>44 43 45 44 #ifndef dprintf … … 176 175 extern int vfs_lookup_internal(char *, int, vfs_lookup_res_t *, 177 176 vfs_pair_t *, ...); 177 extern int vfs_open_node_internal(vfs_lookup_res_t *); 178 178 179 179 extern bool vfs_nodes_init(void); … … 189 189 extern void vfs_client_data_destroy(void *); 190 190 191 extern void vfs_pass_handle(task_id_t, task_id_t, int);192 extern int vfs_wait_handle_internal(void);193 194 191 extern vfs_file_t *vfs_file_get(int); 195 192 extern void vfs_file_put(vfs_file_t *); … … 200 197 extern void vfs_node_addref(vfs_node_t *); 201 198 extern void vfs_node_delref(vfs_node_t *); 202 extern int vfs_open_node_remote(vfs_node_t *);203 199 204 200 extern void vfs_register(ipc_callid_t, ipc_call_t *); … … 206 202 extern void vfs_unmount(ipc_callid_t, ipc_call_t *); 207 203 extern void vfs_open(ipc_callid_t, ipc_call_t *); 204 extern void vfs_open_node(ipc_callid_t, ipc_call_t *); 208 205 extern void vfs_sync(ipc_callid_t, ipc_call_t *); 209 206 extern void vfs_dup(ipc_callid_t, ipc_call_t *); … … 218 215 extern void vfs_unlink(ipc_callid_t, ipc_call_t *); 219 216 extern void vfs_rename(ipc_callid_t, ipc_call_t *); 220 extern void vfs_wait_handle(ipc_callid_t, ipc_call_t *);221 217 222 218 #endif
Note:
See TracChangeset
for help on using the changeset viewer.