Below is the list of changes that have just been committed into a local
5.0 repository of msvensson. When msvensson does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.2087 06/02/27 10:08:35 msvensson@neptunus.(none) +1 -0
Bug#17716 Slave crash in net_clear on qnx
- Set FD_SETSIZE before including "sys/select.h"
include/my_global.h
1.116 06/02/27 10:08:30 msvensson@neptunus.(none) +9 -0
Define FD_SETSIZE on QNX before including "sys/select.h" or "sys/time.h". This defines
number of bits in fd_set type used for 'select'
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: msvensson
# Host: neptunus.(none)
# Root: /home/msvensson/mysql/mysql-5.0
--- 1.115/include/my_global.h 2006-01-04 16:37:31 +01:00
+++ 1.116/include/my_global.h 2006-02-27 10:08:30 +01:00
@@ -43,6 +43,15 @@
#define HAVE_ERRNO_AS_DEFINE
#endif /* __CYGWIN__ */
+#if defined(__QNXNTO__) && !defined(FD_SETSIZE)
+#define FD_SETSIZE 1024 /* Max number of file descriptor bits in
+ fd_set, used when calling 'select'
+ Must be defined before including
+ "sys/select.h" and "sys/time.h"
+ */
+#endif
+
+
/* to make command line shorter we'll define USE_PRAGMA_INTERFACE here */
#ifdef USE_PRAGMA_IMPLEMENTATION
#define USE_PRAGMA_INTERFACE
| Thread |
|---|
| • bk commit into 5.0 tree (msvensson:1.2087) BUG#17716 | msvensson | 27 Feb |