Changeset ce3efa0 in mainline for uspace/srv/hid/console/console.c
- Timestamp:
- 2014-08-12T16:49:25Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 593e023
- Parents:
- f6ab787
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/console/console.c
rf6ab787 rce3efa0 377 377 } 378 378 } 379 379 380 380 return size; 381 381 } … … 388 388 while (off < size) 389 389 cons_write_char(cons, str_decode(data, &off, size)); 390 390 391 return size; 391 392 } … … 498 499 event->type = CEV_KEY; 499 500 event->ev.key = *kevent; 501 500 502 free(kevent); 501 503 return EOK; … … 526 528 con_conn(iid, icall, &cons->srvs); 527 529 } 528 529 530 530 531 static int input_connect(const char *svc) … … 583 584 static bool console_srv_init(char *input_svc, char *output_svc) 584 585 { 585 int rc;586 587 586 /* Connect to input service */ 588 rc = input_connect(input_svc);587 int rc = input_connect(input_svc); 589 588 if (rc != EOK) 590 589 return false;
Note:
See TracChangeset
for help on using the changeset viewer.