Module Name:    src
Committed By:   joerg
Date:           Sun Nov  8 02:20:26 UTC 2015

Modified Files:
        src/lib/libc: shlib_version

Log Message:
Soft-float support for rounding mode is currently not thread-safe, which
is not acceptable. Decision should be made on whether full fenv.h
support is desirable and then fix this appropiately.

Math functions (both libc and libm) should not touch errno, this creates
unnecessary problems for compilers.


To generate a diff of this commit:
cvs rdiff -u -r1.260 -r1.261 src/lib/libc/shlib_version

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/shlib_version
diff -u src/lib/libc/shlib_version:1.260 src/lib/libc/shlib_version:1.261
--- src/lib/libc/shlib_version:1.260	Sat Nov  7 16:21:42 2015
+++ src/lib/libc/shlib_version	Sun Nov  8 02:20:26 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: shlib_version,v 1.260 2015/11/07 16:21:42 nros Exp $
+#	$NetBSD: shlib_version,v 1.261 2015/11/08 02:20:26 joerg Exp $
 #	Remember to update distrib/sets/lists/base/shl.* when changing
 #
 # things we wish to do on next major version bump:
@@ -41,5 +41,7 @@
 # - redo stdin/stdout/stderr to not require copy relocations
 # - move gethostbyname to a compat library
 # - remove arc4random(3) API
+# - decide whether soft-float should support fenv.h, including thread-local contett
+# - stop all math functions from setting errno
 major=12
 minor=199

Reply via email to