diff options
author | hunt <hunt> | 2007-11-09 16:34:09 +0000 |
---|---|---|
committer | hunt <hunt> | 2007-11-09 16:34:09 +0000 |
commit | 264d469c351e8c176adb0514151840d6ef2cd97b (patch) | |
tree | b67076bde27239de47df6366ddab38180582b0a1 /runtime/staprun/mainloop.c | |
parent | 24d9a13ab430d7dcaf317dbad674cc598b0a7b2c (diff) | |
download | systemtap-steved-264d469c351e8c176adb0514151840d6ef2cd97b.tar.gz systemtap-steved-264d469c351e8c176adb0514151840d6ef2cd97b.tar.xz systemtap-steved-264d469c351e8c176adb0514151840d6ef2cd97b.zip |
2007-11-09 Martin Hunt <hunt@redhat.com>
* mainloop.c (stp_main_loop): Bump recvbuf to 8196 for
compatibility with old transport.
Diffstat (limited to 'runtime/staprun/mainloop.c')
-rw-r--r-- | runtime/staprun/mainloop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/staprun/mainloop.c b/runtime/staprun/mainloop.c index c0722b56..d8975d18 100644 --- a/runtime/staprun/mainloop.c +++ b/runtime/staprun/mainloop.c @@ -249,7 +249,7 @@ int stp_main_loop(void) void *data; int type; FILE *ofp = stdout; - char recvbuf[8192]; + char recvbuf[8196]; setvbuf(ofp, (char *)NULL, _IOLBF, 0); setup_main_signals(0); |