Added support for POSIX message queues.

Welcome to NetBSD 4.99.31!
This commit is contained in:
rmind 2007-09-07 19:21:41 +00:00
parent 4492a08ad7
commit d4ec323e32
2 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,4 @@
LIST OF CHANGES FROM LAST RELEASE: <$Revision: 1.924 $>
LIST OF CHANGES FROM LAST RELEASE: <$Revision: 1.925 $>
[Note: This file does not mention every change made to the NetBSD source tree.
@ -225,3 +225,4 @@ Changes from NetBSD 4.0 to NetBSD 5.0:
sysbench benchmark in read-only mode now scales to 900
simultaneous client threads on a 4xCPU i386 system before
serious performance drop-off occurs. [ad 20070907]
kernel: Added support for POSIX message queues. [rmind 20070907]

View File

@ -1,4 +1,4 @@
/* $NetBSD: param.h,v 1.274 2007/08/22 17:52:16 pooka Exp $ */
/* $NetBSD: param.h,v 1.275 2007/09/07 19:21:42 rmind Exp $ */
/*-
* Copyright (c) 1982, 1986, 1989, 1993
@ -63,7 +63,7 @@
* 2.99.9 (299000900)
*/
#define __NetBSD_Version__ 499003000 /* NetBSD 4.99.30 */
#define __NetBSD_Version__ 499003100 /* NetBSD 4.99.31 */
#define __NetBSD_Prereq__(M,m,p) (((((M) * 100000000) + \
(m) * 1000000) + (p) * 100) <= __NetBSD_Version__)