Wed Oct 8 10:06:52 2008 UTC ()
pthread_diagassert is now off by default.


(ad)
diff -r1.1132 -r1.1133 src/doc/CHANGES

cvs diff -r1.1132 -r1.1133 src/doc/CHANGES (expand / switch to unified diff)

--- src/doc/CHANGES 2008/10/07 19:32:29 1.1132
+++ src/doc/CHANGES 2008/10/08 10:06:52 1.1133
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# LIST OF CHANGES FROM LAST RELEASE: <$Revision: 1.1132 $> 1# LIST OF CHANGES FROM LAST RELEASE: <$Revision: 1.1133 $>
2# 2#
3# 3#
4# [Note: This file does not mention every change made to the NetBSD source tree. 4# [Note: This file does not mention every change made to the NetBSD source tree.
5# For an exhaustive list, please subscribe to the `source-changes' mailing list, 5# For an exhaustive list, please subscribe to the `source-changes' mailing list,
6# or see the mailing list archives. For more information, send a message 6# or see the mailing list archives. For more information, send a message
7# containing just the word `help' to `majordomo@NetBSD.org'.] 7# containing just the word `help' to `majordomo@NetBSD.org'.]
8# 8#
9# ---------------------------------------------------------------------------- 9# ----------------------------------------------------------------------------
10# PLEASE USE THE FOLLOWING STYLE WHEN ADDING ITEMS: 10# PLEASE USE THE FOLLOWING STYLE WHEN ADDING ITEMS:
11# 11#
12# theme: Content ... 12# theme: Content ...
13# more content ... 13# more content ...
14# more content. [developer DATE-FORMAT] 14# more content. [developer DATE-FORMAT]
@@ -1033,14 +1033,18 @@ Changes from NetBSD 4.0 to NetBSD 5.0: @@ -1033,14 +1033,18 @@ Changes from NetBSD 4.0 to NetBSD 5.0:
1033 semicolons may be used instead of line breaks. 1033 semicolons may be used instead of line breaks.
1034 [apb 20080920] 1034 [apb 20080920]
1035 uvideo(4): Add bulk endpoint support found in some cameras (like 1035 uvideo(4): Add bulk endpoint support found in some cameras (like
1036 the one in the ASUS Eee PC). [jmcneill,mjf 20080921] 1036 the one in the ASUS Eee PC). [jmcneill,mjf 20080921]
1037 c99(1): Implement as wrapper for cc to run in C99 compatible mode. 1037 c99(1): Implement as wrapper for cc to run in C99 compatible mode.
1038 [hubertf 20080924] 1038 [hubertf 20080924]
1039 ls(1): -n now implies -l. [lukem 20080925] 1039 ls(1): -n now implies -l. [lukem 20080925]
1040 ps(1): Add the -A option, to display information about all processes. 1040 ps(1): Add the -A option, to display information about all processes.
1041 [apb 20080926] 1041 [apb 20080926]
1042 aac(4): Add support for >2TB arrays and implement raw I/O mode which 1042 aac(4): Add support for >2TB arrays and implement raw I/O mode which
1043 is a prerequisite for this [sborrill 20081002] 1043 is a prerequisite for this [sborrill 20081002]
1044 dbcool(4): Replace chip-specific drivers for ADT7463, ADT7467, and 1044 dbcool(4): Replace chip-specific drivers for ADT7463, ADT7467, and
1045 ADM1030 with generic dBCool(tm) driver. [pgoyette 20081007] 1045 ADM1030 with generic dBCool(tm) driver. [pgoyette 20081007]
1046 1046 libpthread: Diagnostic assertions are now disabled by default.
 1047 Application errors will be reported only by error return
 1048 from pthread APIs. The assertions can be re-enabled by
 1049 setting the PTHREAD_DIAGASSERT environment variable
 1050 correctly. [ad 20081008]