Changeset 45c43e5 for src/libcfa/concurrency/thread.c
- Timestamp:
- Feb 26, 2018, 12:49:55 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- eddb399
- Parents:
- 17fc7a5 (diff), 2c39855 (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
-
src/libcfa/concurrency/thread.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/thread.c
r17fc7a5 r45c43e5 98 98 99 99 void yield( void ) { 100 verify( preemption .enabled );100 verify( preemption_state.enabled ); 101 101 BlockInternal( this_thread ); 102 verify( preemption .enabled );102 verify( preemption_state.enabled ); 103 103 } 104 104
Note:
See TracChangeset
for help on using the changeset viewer.