diff options
Diffstat (limited to 'assignment.c')
-rw-r--r-- | assignment.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/assignment.c b/assignment.c index cf0edf7..17f8871 100644 --- a/assignment.c +++ b/assignment.c @@ -70,7 +70,6 @@ static void second_assignments(long tableau[][ASSIGNCOLS], double DoAssign(void) { - const char* context = "CPU:Assignment"; long* array = NULL; clock_t total_time = 0; int iterations = 0; @@ -89,11 +88,6 @@ DoAssign(void) ++num_arrays; array = realloc(array, sizeof(long) * ASSIGNROWS * ASSIGNCOLS * num_arrays); - if (!array) { - fprintf(stderr, "Error in %s, could not allocate memory. Exitting...\n", context); - exit(1); - } - /* ** Do an iteration of the assignment alg. If the ** elapsed time is less than or equal to the permitted @@ -103,10 +97,6 @@ DoAssign(void) } while (DoAssignIteration(array, num_arrays) <= MINIMUM_TICKS); } else { array = malloc(sizeof(long) * ASSIGNROWS * ASSIGNCOLS * num_arrays); - if (!array) { - fprintf(stderr, "Error in %s, could not allocate memory. Exitting...\n", context); - exit(1); - } } do { |