From 6731bbbe1252568ff32d5fb9c1f2767d65b39633 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Wed, 28 Oct 2020 18:08:39 -0500 Subject: ? --- P2/lib/utils.c | 2 +- P2/src/mapreduce.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/P2/lib/utils.c b/P2/lib/utils.c index 8c27f4c..82f7a70 100644 --- a/P2/lib/utils.c +++ b/P2/lib/utils.c @@ -46,7 +46,7 @@ void sendChunkData(char *inputFile, int nMappers) { // construct chunks of 1024 bytes memset(message.msgText, '\0', MSGSIZE); while(read(fd, message.msgText, chunkSize) != 0) { - printf("%s\n", message.msgText); + // printf("%s\n", message.msgText); /* Go to the end of the chunk, check if final character is a space if character is a space, do nothing else cut off before that word and put back file */ diff --git a/P2/src/mapreduce.c b/P2/src/mapreduce.c index 7f87019..290c1c5 100644 --- a/P2/src/mapreduce.c +++ b/P2/src/mapreduce.c @@ -49,7 +49,6 @@ int main(int argc, char *argv[]) { pid_t pid = fork(); if(pid == 0){ //send chunks of data to the mappers in RR fashion - printf("TEST\n"); sendChunkData(inputFile, nMappers); exit(0); } -- cgit v1.2.3