summaryrefslogtreecommitdiffstats
path: root/lib/thread.h
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@vyatta.com>2010-01-13 00:32:40 +0000
committerDavid Lamparter <equinox@diac24.net>2010-02-03 01:53:43 +0100
commitb32d20cfdabab1ae8deec25b608fb23056b38f8d (patch)
tree47bc266049b5dfcd4b8d1dd9c9c6649e8fd296b8 /lib/thread.h
parent29f3a2241609fd547e8e11b1c0a996ff1965a3c8 (diff)
downloadquagga-b32d20cfdabab1ae8deec25b608fb23056b38f8d.tar.bz2
quagga-b32d20cfdabab1ae8deec25b608fb23056b38f8d.tar.xz
thread: remove except fd set
The fd_set exceptfd is never used by any Quagga thread. According to documentation it is only meaningful for out of band data, and no routing protocol uses out of band data. It saves some small amount of kernel overhead to not use it.
Diffstat (limited to 'lib/thread.h')
-rw-r--r--lib/thread.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/thread.h b/lib/thread.h
index b52bc541..09cb2d99 100644
--- a/lib/thread.h
+++ b/lib/thread.h
@@ -53,7 +53,6 @@ struct thread_master
struct thread_list background;
fd_set readfd;
fd_set writefd;
- fd_set exceptfd;
unsigned long alloc;
};