+/*
+ * Note that ZOOM_event_sys_select() is limited as to how many file
+ * descriptors it can multiplex due to its use of select() which in
+ * turn uses the statically defined fd_set type to be a bitmap of the
+ * file descriptors to check. On Ubuntu 6.06 (and almost certainly on
+ * Debian, and probably on all Linuxes, and maybe all Unixes) this is
+ * by default set to 1024 (though it may be possible to override this
+ * using a #define before including <sys/select.h> -- I've not tried
+ * this). 1024 file descriptors is a lot, but not enough in all
+ * cases, e.g. when running IRSpy on a large target database. So you
+ * should ensure that YAZ uses ZOOM_event_sys_poll() when possible.
+ */