Changeset 87822ce in mainline for uspace/app/mkbd/main.c


Ignore:
Timestamp:
2021-03-04T19:14:30Z (3 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d6c4d40
Parents:
760a392
Message:

Avoid infinite loop when console communication is broken

Need to make sure callers of console_get_event_timeout() can distinguish
between timeout and I/O error. Fix all callers of console_get_event()
and console_get_event_timeout() not to enter infinite loop when console
connection is broken. Also avoid setting of errno variable.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/mkbd/main.c

    r760a392 r87822ce  
    174174        while (true) {
    175175                cons_event_t ev;
    176                 bool ok = console_get_event(con, &ev);
    177                 if (!ok) {
     176                errno_t rc = console_get_event(con, &ev);
     177                if (rc != EOK) {
    178178                        printf("Connection with console broken: %s.\n",
    179179                            str_error(errno));
Note: See TracChangeset for help on using the changeset viewer.