Changeset 42a619b in mainline for uspace/srv/vfs/vfs.h
- Timestamp:
- 2011-08-19T08:58:50Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7dcb7981, 903bac0a, c2cf033
- Parents:
- ef7052ec (diff), d894fbd (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.h
ref7052ec r42a619b 175 175 extern int vfs_lookup_internal(char *, int, vfs_lookup_res_t *, 176 176 vfs_pair_t *, ...); 177 extern int vfs_open_node_internal(vfs_lookup_res_t *);178 177 179 178 extern bool vfs_nodes_init(void); … … 189 188 extern void vfs_client_data_destroy(void *); 190 189 190 extern void vfs_pass_handle(sysarg_t, sysarg_t, int); 191 extern int vfs_wait_handle_internal(void); 192 191 193 extern vfs_file_t *vfs_file_get(int); 192 194 extern void vfs_file_put(vfs_file_t *); … … 197 199 extern void vfs_node_addref(vfs_node_t *); 198 200 extern void vfs_node_delref(vfs_node_t *); 201 extern int vfs_open_node_remote(vfs_node_t *); 199 202 200 203 extern void vfs_register(ipc_callid_t, ipc_call_t *); … … 202 205 extern void vfs_unmount(ipc_callid_t, ipc_call_t *); 203 206 extern void vfs_open(ipc_callid_t, ipc_call_t *); 204 extern void vfs_open_node(ipc_callid_t, ipc_call_t *);205 207 extern void vfs_sync(ipc_callid_t, ipc_call_t *); 206 208 extern void vfs_dup(ipc_callid_t, ipc_call_t *); … … 215 217 extern void vfs_unlink(ipc_callid_t, ipc_call_t *); 216 218 extern void vfs_rename(ipc_callid_t, ipc_call_t *); 219 extern void vfs_wait_handle(ipc_callid_t, ipc_call_t *); 217 220 218 221 #endif
Note:
See TracChangeset
for help on using the changeset viewer.