Changeset f7a90df in mainline for uspace/lib/display
- Timestamp:
- 2020-10-25T19:20:57Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d284ce9
- Parents:
- 5a43bd0
- Location:
- uspace/lib/display
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/display/src/display.c
r5a43bd0 rf7a90df 198 198 /** Destroy display window. 199 199 * 200 * @param window Window 200 * @param window Window or @c NULL 201 201 * @return EOK on success or an error code. In both cases @a window must 202 202 * not be accessed anymore … … 206 206 async_exch_t *exch; 207 207 errno_t rc; 208 209 if (window == NULL) 210 return EOK; 208 211 209 212 exch = async_exchange_begin(window->display->sess); -
uspace/lib/display/test/display.c
r5a43bd0 rf7a90df 331 331 } 332 332 333 /** display_window_destroy() can handle NULL argument */ 334 PCUT_TEST(window_destroy_null) 335 { 336 display_window_destroy(NULL); 337 } 338 333 339 /** display_window_move_req() with server returning error response works. */ 334 340 PCUT_TEST(window_move_req_failure)
Note:
See TracChangeset
for help on using the changeset viewer.