aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--P2/lib/utils.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/P2/lib/utils.c b/P2/lib/utils.c
index 797fe89..700aaa7 100644
--- a/P2/lib/utils.c
+++ b/P2/lib/utils.c
@@ -20,7 +20,7 @@ char *getChunkData(int mapperID) {
//Queue ID
int mid = openQueue("map");
printf("%d\n", mapperID);
- msgrcv(mid, &message, sizeof(message.msgText), mapperID, 0);
+ msgrcv(mid, &message, chunkSize, mapperID, 0);
// printf("\n%s\n", message.msgText);
// printf("%d\n", strncmp("END", message.msgText, 3));
if (!strncmp("END", message.msgText, 3))
@@ -30,6 +30,7 @@ char *getChunkData(int mapperID) {
}
char* value = message.msgText;
printf("%s\n", message.msgText);
+ printf("%s\n", value);
return value;
//return &(message.msgText);
}