From: Pierre-Marc Fournier Date: Wed, 10 Feb 2010 20:11:24 +0000 (-0500) Subject: quick and dirty fix for message maximum length bug X-Git-Tag: v0.2~30 X-Git-Url: https://git.lttng.org/?p=ust.git;a=commitdiff_plain;h=058a68cbea07bb2b276c12212ea6129f166b2893 quick and dirty fix for message maximum length bug This happens when we do ustctl --list-markers. A refactoring to fix this correctly is in progress. --- diff --git a/libustcomm/ustcomm.c b/libustcomm/ustcomm.c index fd5e360..4d6a650 100644 --- a/libustcomm/ustcomm.c +++ b/libustcomm/ustcomm.c @@ -35,7 +35,7 @@ #define UNIX_PATH_MAX 108 -#define MSG_MAX 1000 +#define MSG_MAX 10000 /* FIXME: ustcomm blocks on message sending, which might be problematic in * some cases. Fix the poll() usage so sends are buffered until they don't