Changeset 7bf29e5 in mainline for uspace/lib/ui/src/ui.c
- Timestamp:
- 2025-01-09T11:29:38Z (7 months ago)
- Children:
- a5c2960e
- Parents:
- bc3d695 (diff), 4e1221c (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/lib/ui/src/ui.c
rbc3d695 r7bf29e5 1 1 /* 2 * Copyright (c) 202 3Jiri Svoboda2 * Copyright (c) 2025 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 357 357 358 358 break; 359 case CEV_RESIZE: 360 ui_lock(ui); 361 ui_window_send_resize(awnd); 362 ui_unlock(ui); 363 break; 359 364 } 360 365 } … … 563 568 void ui_lock(ui_t *ui) 564 569 { 570 if (ui->display != NULL) 571 display_lock(ui->display); 565 572 fibril_mutex_lock(&ui->lock); 566 573 } … … 577 584 { 578 585 fibril_mutex_unlock(&ui->lock); 586 if (ui->display != NULL) 587 display_unlock(ui->display); 579 588 } 580 589
Note:
See TracChangeset
for help on using the changeset viewer.