Changeset 97c75bf for libcfa/src/concurrency/actor.hfa
- Timestamp:
- Jul 5, 2026, 11:19:36 PM (5 days ago)
- Branches:
- master
- Children:
- 9df6059
- Parents:
- 34d194c
- File:
-
- 1 edited
-
libcfa/src/concurrency/actor.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/actor.hfa
r34d194c r97c75bf 205 205 this.msgs_stolen = 0; // number of messages stolen 206 206 #endif 207 this.stamp = rdtsc l();207 this.stamp = rdtsc(); 208 208 } 209 209 … … 631 631 CHECK_TERMINATION; // check for termination 632 632 633 __atomic_store_n( &executor_->w_infos[id].stamp, rdtsc l(), __ATOMIC_RELAXED );633 __atomic_store_n( &executor_->w_infos[id].stamp, rdtsc(), __ATOMIC_RELAXED ); 634 634 635 635 #ifdef ACTOR_STATS
Note:
See TracChangeset
for help on using the changeset viewer.