Changeset 23b7c02 in mainline for uspace/srv


Ignore:
Timestamp:
2013-09-04T06:58:57Z (12 years ago)
Author:
Manuele Conti <conti.ma@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7664469
Parents:
caf5382 (diff), aa2a049 (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 with Mainline changes.

Location:
uspace/srv
Files:
18 added
2 edited

Legend:

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

    rcaf5382 r23b7c02  
    21722172        /* Establish input bidirectional connection. */
    21732173        rc = input_connect(input_svc);
    2174         if (rc != EOK)
     2174        if (rc != EOK) {
     2175                printf("%s: Failed to connect to input service.\n", NAME);
    21752176                return rc;
     2177        }
    21762178
    21772179        /* Create viewports and connect them to visualizers. */
     
    21792181        rc = loc_category_get_id("visualizer", &cat_id, IPC_FLAG_BLOCKING);
    21802182        if (rc != EOK) {
     2183                printf("%s: Failed to get visualizer category.\n", NAME);
    21812184                input_disconnect();
    21822185                return -1;
     
    21872190        rc = loc_category_get_svcs(cat_id, &svcs, &svcs_cnt);
    21882191        if (rc != EOK || svcs_cnt == 0) {
     2192                printf("%s: Failed to get visualizer category services.\n", NAME);
    21892193                input_disconnect();
    21902194                return -1;
     
    22032207       
    22042208        if (list_empty(&viewport_list)) {
     2209                printf("%s: Failed to get viewports.\n", NAME);
    22052210                input_disconnect();
    22062211                return -1;
  • uspace/srv/locsrv/locsrv.c

    rcaf5382 r23b7c02  
    13771377        categ_dir_add_cat(&cdir, cat);
    13781378       
     1379        cat = category_new("audio-pcm");
     1380        categ_dir_add_cat(&cdir, cat);
     1381       
    13791382        return true;
    13801383}
Note: See TracChangeset for help on using the changeset viewer.