Skip to content

Commit

Permalink
Fix typo in zenbleed.c (#41)
Browse files Browse the repository at this point in the history
specifed -> specified
  • Loading branch information
eltociear authored Jul 28, 2023
1 parent 1af4ce3 commit 4706ef7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pocs/cpus/zenbleed/zenbleed.c
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ static pthread_t spawn_thread_core(void *(*start_routine)(void *), void *restric
if (pthread_attr_setaffinity_np(&attr, sizeof(cpu_set_t), &set) != 0)
err(EXIT_FAILURE, "failed to lock thread to specified core %d", cpu);
if (pthread_create(&tid, &attr, start_routine, arg) != 0)
err(EXIT_FAILURE, "failed to start thread on specifed code %d", cpu);
err(EXIT_FAILURE, "failed to start thread on specified code %d", cpu);
pthread_attr_destroy(&attr);
return tid;
}
Expand Down

0 comments on commit 4706ef7

Please sign in to comment.