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