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