diff options
author | Matt Strapp <strap012@umn.edu> | 2020-11-03 11:18:57 -0600 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2020-11-03 11:18:57 -0600 |
commit | 679249fd638827a328741bbee20209963e7342ce (patch) | |
tree | 430d09233226de16d64bd2854031ab37ccc32323 /P2 | |
parent | aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa (diff) | |
download | csci4061-679249fd638827a328741bbee20209963e7342ce.tar csci4061-679249fd638827a328741bbee20209963e7342ce.tar.gz csci4061-679249fd638827a328741bbee20209963e7342ce.tar.bz2 csci4061-679249fd638827a328741bbee20209963e7342ce.tar.lz csci4061-679249fd638827a328741bbee20209963e7342ce.tar.xz csci4061-679249fd638827a328741bbee20209963e7342ce.tar.zst csci4061-679249fd638827a328741bbee20209963e7342ce.zip |
newest batch of trash
Diffstat (limited to 'P2')
-rw-r--r-- | P2/lib/utils.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/P2/lib/utils.c b/P2/lib/utils.c index 8cce3e1..9d1a436 100644 --- a/P2/lib/utils.c +++ b/P2/lib/utils.c @@ -29,7 +29,7 @@ char *getChunkData(int mapperID) { return NULL; char* value = message.msgText; // printf("%s\n", message.msgText); - // printf("%s\n", value); + printf("RECEIVED CHUNK:%s\n", value); return value; //return &(message.msgText); } @@ -53,7 +53,7 @@ void sendChunkData(char *inputFile, int nMappers) { fseek(file, (i - 1023), SEEK_CUR); message.msgType = (map++ % nMappers) + 1; - // printf("%s\n\n",message.msgText); + printf("SENT CHUNK: %s\n",message.msgText); msgsnd(msgid, &message, MSGSIZE, 0); } @@ -81,10 +81,10 @@ int getInterData(char *Qkey, int reducerID) { //DEBUG! make sure it work. // How do we traverse the directory if we're not given it as an arg? int id = openQueue(); - msgrcv(id, &message, chunkSize, reducerID, 0); - printf("\n%s\n", message.msgText); + msgrcv(id, &message, MSGSIZE, reducerID, 0); + // printf("INTER DATA: %s\n", message.msgText); *Qkey = *message.msgText; - // printf("%s\n", Qkey); + printf("INTER DATA: %s\n", Qkey); return (strncmp("END", message.msgText, 3) == 0); } @@ -105,9 +105,9 @@ void shuffle(int nMappers, int nReducers) { continue; sprintf(message.msgText, "%s/%s", newpath, entry -> d_name); message.msgType = hashFunction(entry -> d_name, nReducers); - printf("%s\n", message.msgText); + printf("SENT SHUFFLE:%s\n", message.msgText); printf("%ld\n", message.msgType); - msgsnd(id, &message, chunkSize, 0); + msgsnd(id, &message, MSGSIZE, 0); } closedir(dir); } |