Changeset b62d1d6
- Timestamp:
- Jun 21, 2022, 2:28:20 PM (2 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
- Children:
- c5d5723
- Parents:
- eb5962a (diff), b0be3713 (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. - Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/ready_subqueue.hfa
reb5962a rb62d1d6 49 49 // Get the relevant nodes locally 50 50 this.prev->link.next = node; 51 this.prev->link.ts = rdtscl();51 __atomic_store_n(&this.prev->link.ts, rdtscl(), __ATOMIC_RELAXED); 52 52 this.prev = node; 53 53 #if !defined(__CFA_NO_STATISTICS__) -
tests/pybin/tools.py
reb5962a rb62d1d6 46 46 47 47 print(cmd) 48 return 0, None 48 return 0, None, None 49 49 50 50 with contextlib.ExitStack() as onexit: … … 291 291 ################################################################################ 292 292 def jobserver_version(): 293 make_ret, out, err = sh('make', '.test_makeflags', '-j2', output_file=subprocess.PIPE, error=subprocess.PIPE)293 make_ret, out, err = sh('make', '.test_makeflags', '-j2', ignore_dry_run = True, output_file=subprocess.PIPE, error=subprocess.PIPE) 294 294 if make_ret != 0: 295 295 print("ERROR: cannot find Makefile jobserver version", file=sys.stderr)
Note: See TracChangeset
for help on using the changeset viewer.