Revert "Merge branch 'threadpool_task_plots' into 'master'
This reverts merge request !375
... | ... | @@ -378,7 +378,7 @@ void space_regrid(struct space *s, int verbose) { |
/* Free the old cells, if they were allocated. */ | ||
if (s->cells_top != NULL) { | ||
threadpool_map(&s->e->threadpool, space_rebuild_recycle_mapper, | ||
s->cells_top, s->nr_cells, sizeof(struct cell), 0, s); | ||
s->cells_top, s->nr_cells, sizeof(struct cell), 100, s); | ||
free(s->cells_top); | ||
free(s->multipoles_top); | ||
s->maxdepth = 0; | ||
... | ... | @@ -491,7 +491,7 @@ void space_regrid(struct space *s, int verbose) { |
/* Free the old cells, if they were allocated. */ | ||
threadpool_map(&s->e->threadpool, space_rebuild_recycle_mapper, | ||
s->cells_top, s->nr_cells, sizeof(struct cell), 0, s); | ||
s->cells_top, s->nr_cells, sizeof(struct cell), 100, s); | ||
s->maxdepth = 0; | ||
} | ||
... | ... | @@ -970,7 +970,7 @@ void space_split(struct space *s, struct cell *cells, int nr_cells, |
const ticks tic = getticks(); | ||
< |