Changeset 19f24fd in mainline for uspace/srv/vfs/vfs.h


Ignore:
Timestamp:
2010-02-05T22:25:52Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
dafa2d04
Parents:
83349b03 (diff), d42976c (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.
Message:

Merge mainline changes.

File:
1 edited

Legend:

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

    r83349b03 r19f24fd  
    177177    vfs_pair_t *, ...);
    178178extern int vfs_open_node_internal(vfs_lookup_res_t *);
     179extern int vfs_close_internal(vfs_file_t *);
    179180
    180181extern bool vfs_nodes_init(void);
    181182extern vfs_node_t *vfs_node_get(vfs_lookup_res_t *);
    182183extern void vfs_node_put(vfs_node_t *);
     184extern void vfs_node_forget(vfs_node_t *);
     185extern unsigned vfs_nodes_refcount_sum_get(fs_handle_t, dev_handle_t);
     186
    183187
    184188#define MAX_OPEN_FILES  128
    185189
    186190extern bool vfs_files_init(void);
     191extern void vfs_files_done(void);
    187192extern vfs_file_t *vfs_file_get(int);
    188193extern int vfs_fd_assign(vfs_file_t *file, int fd);
     
    198203extern void vfs_register(ipc_callid_t, ipc_call_t *);
    199204extern void vfs_mount(ipc_callid_t, ipc_call_t *);
     205extern void vfs_unmount(ipc_callid_t, ipc_call_t *);
    200206extern void vfs_open(ipc_callid_t, ipc_call_t *);
    201207extern void vfs_open_node(ipc_callid_t, ipc_call_t *);
Note: See TracChangeset for help on using the changeset viewer.