diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/index.html | 2 | ||||
-rw-r--r-- | doc/upgrade.html | 15 |
2 files changed, 16 insertions, 1 deletions
diff --git a/doc/index.html b/doc/index.html index 3b5dba0..b1e9fa0 100644 --- a/doc/index.html +++ b/doc/index.html @@ -60,7 +60,7 @@ with a standard C development environment </li> <h3> Download </h3> <ul> - <li> The current released version of skalibs is <a href="skalibs-2.11.0.0.tar.gz">2.11.0.0</a>. </li> + <li> The current released version of skalibs is <a href="skalibs-2.11.1.0.tar.gz">2.11.1.0</a>. </li> <li> Alternatively, you can checkout a copy of the <a href="//git.skarnet.org/cgi-bin/cgit.cgi/skalibs/">skalibs git repository</a>: diff --git a/doc/upgrade.html b/doc/upgrade.html index 4d5856e..90d478f 100644 --- a/doc/upgrade.html +++ b/doc/upgrade.html @@ -16,6 +16,21 @@ <a href="//skarnet.org/">skarnet.org</a> </p> +<h2> in 2.11.1.0 </h2> + +<ul> + <li> <tt>fd_close()</tt> now chooses to adapt to Linux's +<a href="https://man7.org/linux/man-pages/man2/close.2.html">close()</a> +behaviour (closing the fd on EINTR) over the HP-UX one (not closing it). +Destructors like +<a href="https://pubs.opengroup.org/onlinepubs/9699919799/functions/close.html">close()</a> +being allowed to fail has always been a mistake in the specification and a +programming nightmare, making it impossible to behave correctly on all +systems, but apparently standardization efforts are on the way and the Linux +behaviour seems to be the chosen one. </li> + <li> New <tt>unix-transactional.h</tt> function: <tt>opendir_at</tt>. </li> +</ul> + <h2> in 2.11.0.0 </h2> <ul> |