Remove debugging start message

master
Nick Krichevsky 2019-09-26 20:06:46 -04:00
parent 14705bb277
commit e7a120f029
1 changed files with 0 additions and 5 deletions

5
main.c
View File

@ -397,12 +397,7 @@ int main(int argc, char *argv[]) {
}
num_adder_threads = num_adder_threads > MAXTHREAD ? MAXTHREAD : num_adder_threads;
// TODO: Remove this. It's for debugging.
int num_inputs = get_input(num_adder_threads, &inputs);
for (int i = 0; i < num_inputs; i++) {
printf("#%d recipient=%d value=%d\n", i, inputs[i].recipient, inputs[i].value);
}
// Init one mailbox for each thread, and an additional one for the main thread.
int init_result = init_mailboxes(num_adder_threads + 1);
if (init_result != 0) {