Changeset a9ce782 for libcfa/src/concurrency/thread.hfa
- Timestamp:
- Feb 7, 2026, 1:40:26 PM (3 days ago)
- Branches:
- stuck-waitfor-destruct
- Parents:
- c7d106a
- git-author:
- Matthew Au-Yeung <mw2auyeu@…> (02/07/26 13:40:05)
- git-committer:
- Matthew Au-Yeung <mw2auyeu@…> (02/07/26 13:40:26)
- File:
-
- 1 edited
-
libcfa/src/concurrency/thread.hfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/thread.hfa
rc7d106a ra9ce782 83 83 struct thread_dtor_guard_t { 84 84 monitor_dtor_guard_t mg; 85 func_id_t func_id; 85 86 }; 86 87 87 88 forall( T & | is_thread(T) | IS_EXCEPTION(ThreadCancelled(T)) 88 89 | { EHM_DEFAULT_VTABLE(ThreadCancelled(T)); }) 89 void ?{}( thread_dtor_guard_t & this, T & thrd, void(*)(ThreadCancelled(T) &) );90 void ?{}( thread_dtor_guard_t & this, T & thrd, func_id_t func_id, void(*)(ThreadCancelled(T) &) ); 90 91 void ^?{}( thread_dtor_guard_t & this ); 91 92
Note:
See TracChangeset
for help on using the changeset viewer.