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 | |
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')
-rw-r--r-- | runtime/staprun/ChangeLog | 5 | ||||
-rw-r--r-- | runtime/staprun/mainloop.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/runtime/staprun/ChangeLog b/runtime/staprun/ChangeLog index 7c6b89ad..540153d7 100644 --- a/runtime/staprun/ChangeLog +++ b/runtime/staprun/ChangeLog @@ -1,3 +1,8 @@ +2007-11-09 Martin Hunt <hunt@redhat.com> + + * mainloop.c (stp_main_loop): Bump recvbuf to 8196 for + compatibility with old transport. + 2007-10-26 Martin Hunt <hunt@redhat.com> PR5218 * stapio.c (main): Set initialized properly when 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); |