Changes in / [b62d1d6:eb5962a]


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/ready_subqueue.hfa

    rb62d1d6 reb5962a  
    4949        // Get the relevant nodes locally
    5050        this.prev->link.next = node;
    51         __atomic_store_n(&this.prev->link.ts, rdtscl(), __ATOMIC_RELAXED);
     51        this.prev->link.ts   = rdtscl();
    5252        this.prev = node;
    5353        #if !defined(__CFA_NO_STATISTICS__)
  • tests/pybin/tools.py

    rb62d1d6 reb5962a  
    4646
    4747                        print(cmd)
    48                         return 0, None, None
     48                        return 0, None
    4949
    5050                with contextlib.ExitStack() as onexit:
     
    291291################################################################################
    292292def jobserver_version():
    293         make_ret, out, err = sh('make', '.test_makeflags', '-j2', ignore_dry_run = True, output_file=subprocess.PIPE, error=subprocess.PIPE)
     293        make_ret, out, err = sh('make', '.test_makeflags', '-j2', output_file=subprocess.PIPE, error=subprocess.PIPE)
    294294        if make_ret != 0:
    295295                print("ERROR: cannot find Makefile jobserver version", file=sys.stderr)
Note: See TracChangeset for help on using the changeset viewer.