From d27188d0aecb1bf79fda332abce124a22f722b0b Mon Sep 17 00:00:00 2001 From: David Phillips Date: Sun, 7 Jun 2015 11:44:33 +1200 Subject: Pulled malloc calls out of threads into main --- bship.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'bship.c') diff --git a/bship.c b/bship.c index a9b7be2..f1cab2d 100644 --- a/bship.c +++ b/bship.c @@ -8,15 +8,6 @@ void *generate_bship_section(void *section) double a,b; double complex z,c; - - d->data = malloc((d->size*d->size)/d->cores); - if (d->data == NULL) - { - perror("malloc"); - return NULL; - } - - for (y = d->core, b = (d->core*(3.5f/d->size)-1.75f); y < d->size; b+=((d->cores*3.5f)/d->size), y+=d->cores) { for (x = 0, a = -2.5f; x < d->size; a+=(3.5f/d->size), x++) -- cgit v1.1