Changeset 552b69f in mainline for uspace/lib/display/src/display.c
- Timestamp:
- 2021-11-03T20:56:59Z (4 years ago)
- Branches:
- master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1aa8c86
- Parents:
- ec8a1bf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/display/src/display.c
rec8a1bf r552b69f 68 68 dsname = SERVICE_NAME_DISPLAY; 69 69 70 rc = loc_service_get_id(dsname, &display_svc, IPC_FLAG_BLOCKING);70 rc = loc_service_get_id(dsname, &display_svc, 0); 71 71 if (rc != EOK) { 72 72 free(display); … … 75 75 76 76 display->sess = loc_service_connect(display_svc, INTERFACE_DISPLAY, 77 IPC_FLAG_BLOCKING);77 0); 78 78 if (display->sess == NULL) { 79 79 free(display);
Note:
See TracChangeset
for help on using the changeset viewer.