Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions multichase.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ typedef union {
char pad[AVOID_FALSE_SHARING];
struct {
unsigned thread_num; // which thread is this
unsigned count; // count of number of iterations
uint64_t count; // count of number of iterations
void *cycle[MAX_PARALLEL]; // initial address for the chases
const char *extra_args;
int dummy; // useful for confusing the compiler
Expand Down Expand Up @@ -493,7 +493,7 @@ static void *thread_start(void *data) {
args->x.genchase_args->arena + args->x.genchase_args->total_memory);
#endif
}

// now flush our caches
if (args->x.cache_flush_size) {
size_t nr_elts = args->x.cache_flush_size / sizeof(size_t);
Expand Down