Changeset 45f04f8 in mainline for uspace/srv/devmap/devmap.c
- Timestamp:
- 2010-11-18T18:23:43Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3f0a7971, a7811f17, cb569e6
- Parents:
- 51a268f (diff), c63e70c (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/devmap/devmap.c
r51a268f r45f04f8 75 75 link_t namespaces; 76 76 /** Unique namespace identifier */ 77 dev _handle_t handle;77 devmap_handle_t handle; 78 78 /** Namespace name */ 79 79 char *name; … … 92 92 link_t driver_devices; 93 93 /** Unique device identifier */ 94 dev _handle_t handle;94 devmap_handle_t handle; 95 95 /** Device namespace */ 96 96 devmap_namespace_t *namespace; … … 118 118 static FIBRIL_MUTEX_INITIALIZE(null_devices_mutex); 119 119 120 static dev _handle_t last_handle = 0;120 static devmap_handle_t last_handle = 0; 121 121 static devmap_device_t *null_devices[NULL_DEVICES]; 122 122 123 static dev _handle_t devmap_create_handle(void)123 static devmap_handle_t devmap_create_handle(void) 124 124 { 125 125 /* TODO: allow reusing old handles after their unregistration … … 233 233 * 234 234 */ 235 static devmap_namespace_t *devmap_namespace_find_handle(dev _handle_t handle)235 static devmap_namespace_t *devmap_namespace_find_handle(devmap_handle_t handle) 236 236 { 237 237 link_t *item; … … 275 275 * 276 276 */ 277 static devmap_device_t *devmap_device_find_handle(dev _handle_t handle)277 static devmap_device_t *devmap_device_find_handle(devmap_handle_t handle) 278 278 { 279 279 link_t *item; … … 608 608 * Get handle from request 609 609 */ 610 dev _handle_t handle = IPC_GET_ARG2(*call);610 devmap_handle_t handle = IPC_GET_ARG2(*call); 611 611 devmap_device_t *dev = devmap_device_find_handle(handle); 612 612
Note:
See TracChangeset
for help on using the changeset viewer.