Remove debugging start message
parent
14705bb277
commit
e7a120f029
5
main.c
5
main.c
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue