Changeset ac307b2 in mainline for uspace/drv/char/msim-con/msim-con.h
- Timestamp:
- 2017-11-25T11:12:23Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 98cb5e0d
- Parents:
- f571ca49 (diff), 0851a3d (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/drv/char/msim-con/msim-con.h
rf571ca49 rac307b2 36 36 #define MSIM_CON_H 37 37 38 #include <adt/circ_buf.h> 38 39 #include <async.h> 39 40 #include <ddf/driver.h> 41 #include <fibril_synch.h> 42 #include <io/chardev_srv.h> 40 43 #include <loc.h> 41 44 #include <stdint.h> 45 46 enum { 47 msim_con_buf_size = 64 48 }; 42 49 43 50 /** MSIM console resources */ … … 51 58 async_sess_t *client_sess; 52 59 ddf_dev_t *dev; 60 chardev_srvs_t cds; 53 61 msim_con_res_t res; 54 62 irq_pio_range_t irq_range[1]; 55 63 irq_code_t irq_code; 64 circ_buf_t cbuf; 65 uint8_t buf[msim_con_buf_size]; 66 fibril_mutex_t buf_lock; 67 fibril_condvar_t buf_cv; 56 68 } msim_con_t; 57 69
Note:
See TracChangeset
for help on using the changeset viewer.