aboutsummaryrefslogtreecommitdiff
path: root/src/net.h
diff options
context:
space:
mode:
authorJef Poskanzer <jef@mail.acme.com>2013-02-18 14:56:37 -0800
committerJef Poskanzer <jef@mail.acme.com>2013-02-18 14:56:37 -0800
commit231c56296e666e41ac5c6bb69eddd392f18619df (patch)
treeff03422f56a12c6d1562473c542576bfd7bd2c2b /src/net.h
parent3a34e7c11b549360baad8401875408bfae6549d4 (diff)
downloadiperf3-231c56296e666e41ac5c6bb69eddd392f18619df.tar.gz
Comment out the "__attribute__((hot))" declarations because they cause
compiler warnings on older systems. They probably didn't help performance anyway. They'll remain in the source as markers.
Diffstat (limited to 'src/net.h')
-rw-r--r--src/net.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.h b/src/net.h
index a960b27..cb14fc6 100644
--- a/src/net.h
+++ b/src/net.h
@@ -12,7 +12,7 @@
int netdial(int, int, char *, char *, int);
int netannounce(int, int, char *, int);
-int Nwrite(int, void *, int, int) __attribute__((hot));
+int Nwrite(int, void *, int, int) /* __attribute__((hot)) */;
int Nread(int, void *, int, int);
int getsock_tcp_mss(int);
int set_tcp_options(int, int, int);