diff options
author | hunt <hunt> | 2006-03-15 09:16:49 +0000 |
---|---|---|
committer | hunt <hunt> | 2006-03-15 09:16:49 +0000 |
commit | f425170459496ec7267751106bc0d0b0f28fc45a (patch) | |
tree | 82db90948194e6ad333631765cdc62ed262aab27 | |
parent | e99b36af2f2f2e75b3dfbf9ef8fb41f87c5d3d14 (diff) | |
download | systemtap-steved-f425170459496ec7267751106bc0d0b0f28fc45a.tar.gz systemtap-steved-f425170459496ec7267751106bc0d0b0f28fc45a.tar.xz systemtap-steved-f425170459496ec7267751106bc0d0b0f28fc45a.zip |
2006-03-15 Martin Hunt <hunt@redhat.com>
* procfs.c (STP_DEFAULT_BUFFERS): Bump up to 256.
-rw-r--r-- | runtime/transport/ChangeLog | 4 | ||||
-rw-r--r-- | runtime/transport/procfs.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/runtime/transport/ChangeLog b/runtime/transport/ChangeLog index 6ad6261d..d3b29e37 100644 --- a/runtime/transport/ChangeLog +++ b/runtime/transport/ChangeLog @@ -1,3 +1,7 @@ +2006-03-15 Martin Hunt <hunt@redhat.com> + + * procfs.c (STP_DEFAULT_BUFFERS): Bump up to 256. + 2006-03-06 Martin Hunt <hunt@redhat.com> * transport_msgs.h (struct cmd_info): New message. diff --git a/runtime/transport/procfs.c b/runtime/transport/procfs.c index b878a0f5..96337466 100644 --- a/runtime/transport/procfs.c +++ b/runtime/transport/procfs.c @@ -9,7 +9,7 @@ * later version. */ -#define STP_DEFAULT_BUFFERS 128 +#define STP_DEFAULT_BUFFERS 256 static int _stp_current_buffers = STP_DEFAULT_BUFFERS; static struct list_head _stp_ready_q; |