We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41c646b commit e378ce1Copy full SHA for e378ce1
sim.c
@@ -619,8 +619,8 @@ static int compare_overlapped_atoms(const void *a, const void *b)
619
static void raise_overlapped_atoms_slow_path(struct board *board, struct vector pos)
620
{
621
// expensive logic to handle the very rare case of 3+ atoms on the same hex
622
- static _Thread_local atom* atoms[MAX_ATOMS_PER_HEX];
623
- static _Thread_local atom atoms_copy[MAX_ATOMS_PER_HEX];
+ atom* atoms[MAX_ATOMS_PER_HEX];
+ atom atoms_copy[MAX_ATOMS_PER_HEX];
624
625
int count = 0;
626
bool any_unbonded = false;
0 commit comments