Changeset 15f3c3f in mainline for uspace/lib/fs/libfs.h


Ignore:
Timestamp:
2011-06-22T22:00:52Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
86ffa27f
Parents:
ef09a7a
Message:

Rename devmap to loc, devfs to locfs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/fs/libfs.h

    ref09a7a r15f3c3f  
    4040#include <stdint.h>
    4141#include <async.h>
    42 #include <devmap.h>
     42#include <loc.h>
    4343
    4444typedef struct {
     
    4646        async_sess_t *sess;
    4747        fs_handle_t fs_handle;
    48         devmap_handle_t devmap_handle;
     48        service_id_t service_id;
    4949} mp_data_t;
    5050
     
    6060         * argument holds the output argument.
    6161         */
    62         int (* root_get)(fs_node_t **, devmap_handle_t);
     62        int (* root_get)(fs_node_t **, service_id_t);
    6363        int (* match)(fs_node_t **, fs_node_t *, const char *);
    64         int (* node_get)(fs_node_t **, devmap_handle_t, fs_index_t);
     64        int (* node_get)(fs_node_t **, service_id_t, fs_index_t);
    6565        int (* node_open)(fs_node_t *);
    6666        int (* node_put)(fs_node_t *);
    67         int (* create)(fs_node_t **, devmap_handle_t, int);
     67        int (* create)(fs_node_t **, service_id_t, int);
    6868        int (* destroy)(fs_node_t *);
    6969        int (* link)(fs_node_t *, fs_node_t *, const char *);
     
    8080        bool (* is_directory)(fs_node_t *);
    8181        bool (* is_file)(fs_node_t *);
    82         devmap_handle_t (* device_get)(fs_node_t *);
     82        service_id_t (* device_get)(fs_node_t *);
    8383} libfs_ops_t;
    8484
Note: See TracChangeset for help on using the changeset viewer.