diff --git a/documentation/RELEASE_NOTES.html b/documentation/RELEASE_NOTES.html index da2f758b4..826c64c99 100644 --- a/documentation/RELEASE_NOTES.html +++ b/documentation/RELEASE_NOTES.html @@ -14,6 +14,14 @@
On RTEMS the NTP Time Provider could in some circumstances get out of sync +with the server because the osdNTPGet() code wasn't clearing its input socket +before sending out a new request. This +(Launchpad bug 1549908) +has now been fixed.
+RSRV now honors EPICS_CAS_INTF_ADDR_LIST and binds only to the provided list @@ -49,7 +57,11 @@ back-porting some earlier changes from the 3.15 branch, and fixes Launchpad bug #1514520.
+<<<<<<< TREEOn process exit, don't try to stop the worker thread that makes DNS lookups
asynchronous. Previously this would wait for any lookups still in progress,
diff --git a/src/libCom/osi/os/RTEMS/osdTime.cpp b/src/libCom/osi/os/RTEMS/osdTime.cpp
index acefa1b09..e71c64a88 100644
--- a/src/libCom/osi/os/RTEMS/osdTime.cpp
+++ b/src/libCom/osi/os/RTEMS/osdTime.cpp
@@ -10,6 +10,9 @@
*
* Author: W. Eric Norum
*/
+#define __BSD_VISIBLE 1
+#include