Changes in uspace/app/netecho/netecho.c [28a5ebd:87822ce] in mainline
- File:
-
- 1 edited
-
uspace/app/netecho/netecho.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/netecho/netecho.c
r28a5ebd r87822ce 121 121 { 122 122 cons_event_t ev; 123 errno_t rc; 123 124 124 125 printf("Communication started. Press Ctrl-Q to quit.\n"); … … 128 129 done = false; 129 130 while (!done) { 130 console_get_event(con, &ev); 131 rc = console_get_event(con, &ev); 132 if (rc != EOK) 133 break; 134 131 135 if (ev.type == CEV_KEY && ev.ev.key.type == KEY_PRESS) 132 136 key_handle(&ev.ev.key);
Note:
See TracChangeset
for help on using the changeset viewer.
