Changeset f7a90df in mainline for uspace/lib/display/src
- 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
- File:
-
- 1 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);
Note:
See TracChangeset
for help on using the changeset viewer.