Module Name: src Committed By: riastradh Date: Sat Apr 9 19:55:33 UTC 2016
Modified Files: src/sys/sys: aio.h Log Message: Macro parentheses police! One *hopes* this has no functional change. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/sys/sys/aio.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/sys/aio.h diff -u src/sys/sys/aio.h:1.12 src/sys/sys/aio.h:1.13 --- src/sys/sys/aio.h:1.12 Sat Jan 7 19:48:19 2012 +++ src/sys/sys/aio.h Sat Apr 9 19:55:33 2016 @@ -1,4 +1,4 @@ -/* $NetBSD: aio.h,v 1.12 2012/01/07 19:48:19 christos Exp $ */ +/* $NetBSD: aio.h,v 1.13 2016/04/09 19:55:33 riastradh Exp $ */ /* * Copyright (c) 2007, Mindaugas Rasiukevicius <rmind at NetBSD org> @@ -70,7 +70,7 @@ struct aiocb { /* Default limits of allowed AIO operations */ #define AIO_LISTIO_MAX 512 -#define AIO_MAX AIO_LISTIO_MAX * 16 +#define AIO_MAX (AIO_LISTIO_MAX * 16) #include <sys/condvar.h> #include <sys/lwp.h>