Changeset 41811af in mainline for uspace/srv/devman/devman.h
- Timestamp:
- 2011-06-10T10:14:26Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ab547063
- Parents:
- 9536e6e (diff), 390d80d (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/devman/devman.h
r9536e6e r41811af 44 44 #include <fibril_synch.h> 45 45 #include <atomic.h> 46 #include <async.h> 46 47 47 48 #include "util.h" … … 87 88 int state; 88 89 89 /** Phoneasociated with this driver. */90 int phone;90 /** Session asociated with this driver. */ 91 async_sess_t *sess; 91 92 /** Name of the device driver. */ 92 93 char *name; … … 99 100 100 101 /** 101 * Fibril mutex for this driver - driver state, list of devices, phone.102 * Fibril mutex for this driver - driver state, list of devices, session. 102 103 */ 103 104 fibril_mutex_t driver_mutex; … … 312 313 extern void add_driver(driver_list_t *, driver_t *); 313 314 extern void attach_driver(dev_node_t *, driver_t *); 314 extern void add_device( int, driver_t *, dev_node_t *, dev_tree_t *);315 extern void add_device(async_sess_t *, driver_t *, dev_node_t *, dev_tree_t *); 315 316 extern bool start_driver(driver_t *); 316 317
Note:
See TracChangeset
for help on using the changeset viewer.