Changeset 87822ce in mainline for uspace/app/ping/ping.c
- Timestamp:
- 2021-03-04T19:14:30Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d6c4d40
- Parents:
- 760a392
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/ping/ping.c
r760a392 r87822ce 196 196 while (true) { 197 197 cons_event_t ev; 198 if (!console_get_event(con, &ev)) 199 break; 198 errno_t rc; 199 rc = console_get_event(con, &ev); 200 if (rc != EOK) { 201 ping_signal_received(RECEIVED_INTERRUPT); 202 break; 203 } 200 204 201 205 if ((ev.type == CEV_KEY) && (ev.ev.key.type == KEY_PRESS) &&
Note:
See TracChangeset
for help on using the changeset viewer.