Changes in uspace/drv/char/ski-con/ski-con.h [7a6065c:676e833] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/char/ski-con/ski-con.h
r7a6065c r676e833 36 36 #define SKI_CON_H 37 37 38 #include <adt/circ_buf.h>39 38 #include <async.h> 40 39 #include <ddf/driver.h> 41 #include <io/chardev_srv.h>42 40 #include <loc.h> 43 41 #include <stdint.h> 44 45 enum {46 ski_con_buf_size = 6447 };48 42 49 43 /** Ski console */ … … 51 45 async_sess_t *client_sess; 52 46 ddf_dev_t *dev; 53 chardev_srvs_t cds;54 circ_buf_t cbuf;55 uint8_t buf[ski_con_buf_size];56 fibril_mutex_t buf_lock;57 fibril_condvar_t buf_cv;58 47 } ski_con_t; 59 48
Note:
See TracChangeset
for help on using the changeset viewer.