Changeset d6c4d40 in mainline for uspace/lib/c/generic/io/console.c


Ignore:
Timestamp:
2021-03-05T11:23:31Z (3 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f73a8e3
Parents:
87822ce
git-author:
Jiri Svoboda <jiri@…> (2021-03-04 20:22:52)
git-committer:
Jiri Svoboda <jiri@…> (2021-03-05 11:23:31)
Message:

Do not forget to clean up when exiting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/io/console.c

    r87822ce rd6c4d40  
    323323void console_unmap(console_ctrl_t *ctrl, charfield_t *buf)
    324324{
     325        async_exch_t *exch = async_exchange_begin(ctrl->output_sess);
     326        (void) async_req_0_0(exch, CONSOLE_UNMAP);
     327        async_exchange_end(exch);
     328
    325329        as_area_destroy(buf);
    326330}
Note: See TracChangeset for help on using the changeset viewer.