summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2021-11-17 17:19:54 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2021-11-17 17:20:17 +0000
commitdd19ce4f24eec64177cdcfcf294b8efbb631a24b (patch)
tree1d51fa8d15c396377b0939faa45001702e67bfe7 /doc
parent085111b72e3e3524485194b7dd501a9093a1b92f (diff)
select() -> poll(). Bug 2831
Diffstat (limited to 'doc')
-rw-r--r--doc/doc-txt/ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/doc-txt/ChangeLog b/doc/doc-txt/ChangeLog
index 7f6814d5e..58996c3f8 100644
--- a/doc/doc-txt/ChangeLog
+++ b/doc/doc-txt/ChangeLog
@@ -40,6 +40,14 @@ JH/09 Fix macro-definition during "-be" expansion testing. The move to
write-protected store for macros had not accounted for these runtime
additions; fix by removing this protection for "-be" mode.
+JH/10 Convert all uses of select() to poll(). FreeBSD 12.2 was found to be
+ handing out large-numbered file descriptors, violating the usual Unix
+ assumption (and required by Posix) that the lowest possible number will be
+ allocated by the kernel when a new one is needed. In the daemon, and any
+ child procesees, values higher than 1024 (being bigger than FD_SETSIZE)
+ are not useable for FD_SET() [and hence select()] and overwrite the stack.
+ Assorted crashes happen.
+
Exim version 4.95
-----------------