Changeset f9b2cb4c in mainline for uspace/lib/c/generic/io/console.c
- Timestamp:
- 2015-08-23T12:50:23Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9ef495f
- Parents:
- 0dd16778
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/console.c
r0dd16778 rf9b2cb4c 49 49 return NULL; 50 50 51 ctrl->input_sess = fsession( EXCHANGE_SERIALIZE, ifile);51 ctrl->input_sess = fsession(ifile, INTERFACE_CONSOLE); 52 52 if (!ctrl->input_sess) { 53 53 free(ctrl); … … 55 55 } 56 56 57 ctrl->output_sess = fsession( EXCHANGE_SERIALIZE, ofile);57 ctrl->output_sess = fsession(ofile, INTERFACE_CONSOLE); 58 58 if (!ctrl->output_sess) { 59 59 free(ctrl);
Note:
See TracChangeset
for help on using the changeset viewer.