Changeset 6843a9c in mainline for uspace/srv/hid/console/console.c


Ignore:
Timestamp:
2012-06-29T13:02:14Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
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.
Message:

Merge mainline changes

Trivial conflicts.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/console/console.c

    rba72f2b r6843a9c  
    481481                                event->c = c;
    482482                               
    483                                 /* Kernel console does not read events
     483                                /*
     484                                 * Kernel console does not read events
    484485                                 * from us, so we will redirect them
    485486                                 * to the (last) active userspace console
     
    487488                                 */
    488489                                console_t *target_console = cons_get_active_uspace();
    489 
     490                               
    490491                                prodcons_produce(&target_console->input_pc,
    491492                                    &event->link);
     
    824825       
    825826        /* 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) {
    828830                printf("%s: Unable to register server (%s)\n", NAME,
    829831                    str_error(rc));
Note: See TracChangeset for help on using the changeset viewer.