Changes in uspace/drv/char/msim-con/msim-con.h [c309b18:7de5f12] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/char/msim-con/msim-con.h
rc309b18 r7de5f12 36 36 #define MSIM_CON_H 37 37 38 #include <adt/circ_buf.h>39 38 #include <async.h> 40 39 #include <ddf/driver.h> 41 #include <ddi.h>42 #include <fibril_synch.h>43 #include <io/chardev_srv.h>44 40 #include <loc.h> 45 41 #include <stdint.h> 46 47 enum {48 msim_con_buf_size = 6449 };50 42 51 43 /** MSIM console resources */ … … 59 51 async_sess_t *client_sess; 60 52 ddf_dev_t *dev; 61 chardev_srvs_t cds;62 53 msim_con_res_t res; 63 irq_pio_range_t irq_range[1];64 irq_code_t irq_code;65 circ_buf_t cbuf;66 uint8_t buf[msim_con_buf_size];67 fibril_mutex_t buf_lock;68 fibril_condvar_t buf_cv;69 ioport8_t *out_reg;70 54 } msim_con_t; 71 55
Note:
See TracChangeset
for help on using the changeset viewer.