[netperf-dev] netperf2 commit notice r249 - in trunk: . src
raj at netperf.org
raj at netperf.org
Fri Mar 7 15:17:19 PST 2008
Author: raj
Date: 2008-03-07 15:17:18 -0800 (Fri, 07 Mar 2008)
New Revision: 249
Added:
trunk/src/netsys_none.c
Modified:
trunk/config.h.in
Log:
do not forget netsys_none.c silly developer
Modified: trunk/config.h.in
===================================================================
--- trunk/config.h.in 2008-03-07 22:52:24 UTC (rev 248)
+++ trunk/config.h.in 2008-03-07 23:17:18 UTC (rev 249)
@@ -271,6 +271,9 @@
/* Use Linux's ethtool interface to determine driver information. */
#undef USE_ETHTOOL
+/* Use Linux's ethtool interface to determine driver information. */
+#undef USE_HPUX
+
/* Use Solaris's kstat interface to measure CPU util. */
#undef USE_KSTAT
Added: trunk/src/netsys_none.c
===================================================================
--- trunk/src/netsys_none.c (rev 0)
+++ trunk/src/netsys_none.c 2008-03-07 23:17:18 UTC (rev 249)
@@ -0,0 +1,8 @@
+#include <string.h>
+
+void
+find_system_info(char **system_model, char **cpu_model, int *cpu_frequency) {
+ *system_model = strdup("Unknown System Model");
+ *cpu_model = strdup("Unknown CPU Model");
+ *cpu_frequency = -1;
+}
More information about the netperf-dev
mailing list