Changeset 04803bf in mainline for uspace/lib/c/include/devmap.h


Ignore:
Timestamp:
2011-03-21T22:00:17Z (15 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
143932e3
Parents:
b50b5af2 (diff), 7308e84 (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 (needs fixes).

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/devmap.h

    rb50b5af2 r04803bf  
    3838#include <ipc/devmap.h>
    3939#include <async.h>
     40#include <bool.h>
    4041
    4142extern int devmap_get_phone(devmap_interface_t, unsigned int);
     
    4344
    4445extern int devmap_driver_register(const char *, async_client_conn_t);
    45 extern int devmap_device_register(const char *, dev_handle_t *);
     46extern int devmap_device_register(const char *, devmap_handle_t *);
     47extern int devmap_device_register_with_iface(const char *, devmap_handle_t *, sysarg_t);
    4648
    47 extern int devmap_device_get_handle(const char *, dev_handle_t *, unsigned int);
    48 extern int devmap_device_connect(dev_handle_t, unsigned int);
     49extern int devmap_device_get_handle(const char *, devmap_handle_t *, unsigned int);
     50extern int devmap_namespace_get_handle(const char *, devmap_handle_t *, unsigned int);
     51extern devmap_handle_type_t devmap_handle_probe(devmap_handle_t);
     52
     53extern int devmap_device_connect(devmap_handle_t, unsigned int);
    4954
    5055extern int devmap_null_create(void);
    5156extern void devmap_null_destroy(int);
    5257
    53 extern ipcarg_t devmap_device_get_count(void);
    54 extern ipcarg_t devmap_device_get_devices(ipcarg_t, dev_desc_t *);
     58extern size_t devmap_count_namespaces(void);
     59extern size_t devmap_count_devices(devmap_handle_t);
     60
     61extern size_t devmap_get_namespaces(dev_desc_t **);
     62extern size_t devmap_get_devices(devmap_handle_t, dev_desc_t **);
    5563
    5664#endif
Note: See TracChangeset for help on using the changeset viewer.