From c9708f1b24aa30b2d05054575a8f78869caa73d7 Mon Sep 17 00:00:00 2001 From: Andrea Smith Date: Sat, 24 Oct 2020 11:23:09 -0500 Subject: Comments --- P2/lib/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'P2') diff --git a/P2/lib/utils.c b/P2/lib/utils.c index dc74827..7bfe826 100644 --- a/P2/lib/utils.c +++ b/P2/lib/utils.c @@ -1,8 +1,8 @@ #include "utils.h" struct msg_t { - long tag; - char text[MSGSIZE]; + long tag; // Message type, must be > 0. Value will be used by msgrcv() + char text[MSGSIZE]; // Message data }; char *getChunkData(int mapperID) { -- cgit v1.2.3