Changeset f7bb6d1 in mainline for uspace/srv/hid/compositor/compositor.c
- Timestamp:
- 2013-09-17T19:51:20Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6ac3d27
- Parents:
- 3efc35a (diff), ca62f86 (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/compositor/compositor.c
r3efc35a rf7bb6d1 2172 2172 /* Establish input bidirectional connection. */ 2173 2173 rc = input_connect(input_svc); 2174 if (rc != EOK) 2174 if (rc != EOK) { 2175 printf("%s: Failed to connect to input service.\n", NAME); 2175 2176 return rc; 2177 } 2176 2178 2177 2179 /* Create viewports and connect them to visualizers. */ … … 2179 2181 rc = loc_category_get_id("visualizer", &cat_id, IPC_FLAG_BLOCKING); 2180 2182 if (rc != EOK) { 2183 printf("%s: Failed to get visualizer category.\n", NAME); 2181 2184 input_disconnect(); 2182 2185 return -1; … … 2187 2190 rc = loc_category_get_svcs(cat_id, &svcs, &svcs_cnt); 2188 2191 if (rc != EOK || svcs_cnt == 0) { 2192 printf("%s: Failed to get visualizer category services.\n", NAME); 2189 2193 input_disconnect(); 2190 2194 return -1; … … 2203 2207 2204 2208 if (list_empty(&viewport_list)) { 2209 printf("%s: Failed to get viewports.\n", NAME); 2205 2210 input_disconnect(); 2206 2211 return -1;
Note:
See TracChangeset
for help on using the changeset viewer.