Changeset 5e0b6657 for libcfa/src/concurrency/monitor.cfa
- Timestamp:
- Dec 8, 2025, 11:29:33 AM (2 months ago)
- Branches:
- master
- Children:
- 79ba50c
- Parents:
- 8f448e0 (diff), 79ec8c3 (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
-
libcfa/src/concurrency/monitor.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/monitor.cfa
r8f448e0 r5e0b6657 10 10 // Created On : Thd Feb 23 12:27:26 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Apr 25 07:20:22202513 // Update Count : 8 012 // Last Modified On : Tue Nov 4 22:03:41 2025 13 // Update Count : 82 14 14 // 15 15 … … 494 494 495 495 bool signal( condition & this ) libcfa_public { 496 if ( is_empty( this ) ) { return false; }496 if ( empty( this ) ) { return false; } 497 497 498 498 //Check that everything is as expected … … 581 581 // Access the user_info of the thread waiting at the front of the queue 582 582 uintptr_t front( condition & this ) libcfa_public { 583 verifyf( ! is_empty(this),583 verifyf( ! empty( this ), 584 584 "Attempt to access user data on an empty condition.\n" 585 585 "Possible cause is not checking if the condition is empty before reading stored data."
Note:
See TracChangeset
for help on using the changeset viewer.