Changeset 552b69f in mainline for uspace/lib/display/src/display.c


Ignore:
Timestamp:
2021-11-03T20:56:59Z (3 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1aa8c86
Parents:
ec8a1bf
Message:

Dual-mode applications should automatically fall back to console

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/display/src/display.c

    rec8a1bf r552b69f  
    6868                dsname = SERVICE_NAME_DISPLAY;
    6969
    70         rc = loc_service_get_id(dsname, &display_svc, IPC_FLAG_BLOCKING);
     70        rc = loc_service_get_id(dsname, &display_svc, 0);
    7171        if (rc != EOK) {
    7272                free(display);
     
    7575
    7676        display->sess = loc_service_connect(display_svc, INTERFACE_DISPLAY,
    77             IPC_FLAG_BLOCKING);
     77            0);
    7878        if (display->sess == NULL) {
    7979                free(display);
Note: See TracChangeset for help on using the changeset viewer.