]> sourceware.org Git - systemtap.git/commitdiff
2007-05-10 Martin Hunt <hunt@redhat.com>
authorhunt <hunt>
Thu, 10 May 2007 15:35:32 +0000 (15:35 +0000)
committerhunt <hunt>
Thu, 10 May 2007 15:35:32 +0000 (15:35 +0000)
* relay.c (reader_thread): Set timeout for streaming to
200ms.

runtime/staprun/ChangeLog
runtime/staprun/relay.c

index 7a27ef81c45946a8e2f6dc872d69ad14a039e0fa..fadeb45edfe4ad1ce2a0d958c181dc1344560c31 100644 (file)
@@ -1,3 +1,8 @@
+2007-05-10  Martin Hunt  <hunt@redhat.com>
+
+       * relay.c (reader_thread): Set timeout for streaming to 
+       200ms.
+
 2007-05-09  Martin Hunt  <hunt@redhat.com>
 
        * relay.c (reader_thread): For bulk mode, set timeout to NULL
index 8224e762171c1aab314ebfdd616f179fb70265be..5100ab2d9a5c7312af41da260047a323518f02e3 100644 (file)
@@ -49,7 +49,7 @@ static void *reader_thread(void *data)
         char buf[131072];
         int rc, cpu = (int)(long)data;
         struct pollfd pollfd;
-       struct timespec tim = {.tv_sec=0, .tv_nsec=10000000}, *timeout = &tim;
+       struct timespec tim = {.tv_sec=0, .tv_nsec=200000000}, *timeout = &tim;
        sigset_t sigs;
 
        sigemptyset(&sigs);
This page took 0.028349 seconds and 5 git commands to generate.