Changeset ac12f1f for libcfa/src/concurrency/thread.cfa
- Timestamp:
- Nov 13, 2020, 11:37:11 AM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- a056f56
- Parents:
- 1b033b8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/thread.cfa
r1b033b8 rac12f1f 41 41 link.preferred = -1; 42 42 #if defined( __CFA_WITH_VERIFY__ ) 43 canary = 0x0D15EA5E0D15EA5E ;43 canary = 0x0D15EA5E0D15EA5Ep; 44 44 #endif 45 45 … … 53 53 void ^?{}($thread& this) with( this ) { 54 54 #if defined( __CFA_WITH_VERIFY__ ) 55 canary = 0xDEADDEADDEADDEAD ;55 canary = 0xDEADDEADDEADDEADp; 56 56 #endif 57 57 unregister(curr_cluster, this);
Note: See TracChangeset
for help on using the changeset viewer.