Changes in uspace/lib/c/generic/io/console.c [5d94b16c:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/console.c
r5d94b16c r9d58539 38 38 #include <async.h> 39 39 #include <errno.h> 40 #include <stdio.h> 40 41 #include <malloc.h> 41 42 #include <vfs/vfs_sess.h> … … 125 126 { 126 127 async_exch_t *exch = async_exchange_begin(ctrl->output_sess); 127 async_req_1_0(exch, CONSOLE_ SET_CURSOR_VISIBILITY, (show != false));128 async_req_1_0(exch, CONSOLE_CURSOR_VISIBILITY, (show != false)); 128 129 async_exchange_end(exch); 129 130 } … … 150 151 { 151 152 async_exch_t *exch = async_exchange_begin(ctrl->output_sess); 152 async_req_2_0(exch, CONSOLE_ SET_POS, col, row);153 async_req_2_0(exch, CONSOLE_GOTO, col, row); 153 154 async_exchange_end(exch); 154 155 }
Note:
See TracChangeset
for help on using the changeset viewer.