Changeset 53f6a11


Ignore:
Timestamp:
May 26, 2023, 8:47:20 AM (18 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ast-experimental, master
Children:
427a577, 98edf2f, a01faa98
Parents:
c26bea2a (diff), 687b663 (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.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/concurrency/lockfree_stack.cfa

    rc26bea2a r53f6a11  
    1010// Created On       : Thu May 25 15:36:50 2023
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu May 25 16:20:23 2023
    13 // Update Count     : 2
     12// Last Modified On : Fri May 26 08:08:47 2023
     13// Update Count     : 4
    1414//
    1515
     
    2424                uintptr_t count;                                                                // count each push
    2525        };
     26        #if defined( __SIZEOF_INT128__ )
    2627        __int128 atom;                                                                          // gcc, 128-bit integer
     28        #else
     29        int64_t atom;
     30        #endif // __SIZEOF_INT128__
    2731} __attribute__(( aligned( 16 ) ));
    2832
Note: See TracChangeset for help on using the changeset viewer.