* iperf 1.7.0 thread bug.
@ 2004-10-05 18:41 Stephen Hemminger
0 siblings, 0 replies; only message in thread
From: Stephen Hemminger @ 2004-10-05 18:41 UTC (permalink / raw)
To: dast; +Cc: iperf-users, netdev
[-- Attachment #1: Type: text/plain, Size: 251 bytes --]
The iperf 1.7.0 hangs on AMD64, after several false starts the problem
turned out to be that the Thread wrapper was incorrectly assumuing that
pthread wasn't present (in Speaker.cpp), so some data sizes get messed
up. Bedlam ensuses.
This fixes it.
[-- Attachment #2: Type: text/x-patch, Size: 268 bytes --]
--- lib/Thread.hpp.orig 2004-10-05 11:33:14.638098735 -0700
+++ lib/Thread.hpp 2004-10-05 11:34:30.160583668 -0700
@@ -56,7 +56,9 @@
#ifndef THREAD_H
#define THREAD_H
-
+#ifdef HAVE_CONFIG_H
+ #include "config.h"
+#endif
#if defined( HAVE_POSIX_THREAD )
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-10-05 18:41 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-10-05 18:41 iperf 1.7.0 thread bug Stephen Hemminger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).