summaryrefslogtreecommitdiff
path: root/package/netperf/patches
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-07-24 11:34:53 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2015-07-24 11:35:47 +0200
commit5c8213fcec586bba3e913605925fbb1ed640bdfe (patch)
treed22c07b61208081f8100c87640c68590ebf5ed57 /package/netperf/patches
parentbd74f3eccc5d55b907bc9c0c125c200ca30e1e12 (diff)
update netperf to latest version
Diffstat (limited to 'package/netperf/patches')
-rw-r--r--package/netperf/patches/patch-src_netlib_c17
1 files changed, 0 insertions, 17 deletions
diff --git a/package/netperf/patches/patch-src_netlib_c b/package/netperf/patches/patch-src_netlib_c
deleted file mode 100644
index 688054fde..000000000
--- a/package/netperf/patches/patch-src_netlib_c
+++ /dev/null
@@ -1,17 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- netperf-2.4.3.orig/src/netlib.c 2007-02-15 01:12:35.000000000 +0100
-+++ netperf-2.4.3/src/netlib.c 2009-06-01 23:36:22.000000000 +0200
-@@ -1900,8 +1900,13 @@ bind_to_specific_processor(int processor
-
- #if defined(__CPU_SETSIZE)
- #define NETPERF_CPU_SETSIZE __CPU_SETSIZE
-+#if defined(__CPU_SET_S)
-+#define NETPERF_CPU_SET(cpu, cpusetp) __CPU_SET_S(cpu, sizeof (cpu_set_t), cpusetp)
-+#define NETPERF_CPU_ZERO(cpusetp) __CPU_ZERO_S (sizeof (cpu_set_t), cpusetp)
-+#else
- #define NETPERF_CPU_SET(cpu, cpusetp) __CPU_SET(cpu, cpusetp)
- #define NETPERF_CPU_ZERO(cpusetp) __CPU_ZERO (cpusetp)
-+#endif
- typedef cpu_set_t netperf_cpu_set_t;
- #else
- #define NETPERF_CPU_SETSIZE sizeof(unsigned long)