Changeset 6843a9c in mainline for uspace/srv/hid/console/console.c
- Timestamp:
- 2012-06-29T13:02:14Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 722912e
- Parents:
- ba72f2b (diff), 0bbd13e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/console/console.c
rba72f2b r6843a9c 481 481 event->c = c; 482 482 483 /* Kernel console does not read events 483 /* 484 * Kernel console does not read events 484 485 * from us, so we will redirect them 485 486 * to the (last) active userspace console … … 487 488 */ 488 489 console_t *target_console = cons_get_active_uspace(); 489 490 490 491 prodcons_produce(&target_console->input_pc, 491 492 &event->link); … … 824 825 825 826 /* Register server */ 826 int rc = loc_server_register(NAME, client_connection); 827 if (rc < 0) { 827 async_set_client_connection(client_connection); 828 int rc = loc_server_register(NAME); 829 if (rc != EOK) { 828 830 printf("%s: Unable to register server (%s)\n", NAME, 829 831 str_error(rc));
Note:
See TracChangeset
for help on using the changeset viewer.