Ignore:
Timestamp:
Nov 13, 2020, 11:37:11 AM (4 years ago)
Author:
Thierry Delisle <tdelisle@…>
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
Message:

canary is now a void * so it prints in hexa in gdb

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/thread.cfa

    r1b033b8 rac12f1f  
    4141        link.preferred = -1;
    4242        #if defined( __CFA_WITH_VERIFY__ )
    43                 canary = 0x0D15EA5E0D15EA5E;
     43                canary = 0x0D15EA5E0D15EA5Ep;
    4444        #endif
    4545
     
    5353void ^?{}($thread& this) with( this ) {
    5454        #if defined( __CFA_WITH_VERIFY__ )
    55                 canary = 0xDEADDEADDEADDEAD;
     55                canary = 0xDEADDEADDEADDEADp;
    5656        #endif
    5757        unregister(curr_cluster, this);
Note: See TracChangeset for help on using the changeset viewer.