aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2008-12-10 19:45:58 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2008-12-10 19:45:58 +0000
commitc4592cbca3ba2dc8cf6fce0d8551d5334c323a78 (patch)
treee11843c4aae8352cc007f752009ba807c822e270
parentc96f3741957245831a8d3c56d57892fb058cd375 (diff)
Notes
-rw-r--r--sys/sys/aio.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sys/aio.h b/sys/sys/aio.h
index 581bdf2f3064..a474b8df2162 100644
--- a/sys/sys/aio.h
+++ b/sys/sys/aio.h
@@ -69,7 +69,8 @@ typedef struct aiocb {
off_t aio_offset; /* File offset for I/O */
volatile void *aio_buf; /* I/O buffer in process space */
size_t aio_nbytes; /* Number of bytes for I/O */
- char __spare__[sizeof(int) * 2 + sizeof(void *)]; /* osigevent. */
+ int __spare__[2];
+ void *__spare2__;
int aio_lio_opcode; /* LIO opcode */
int aio_reqprio; /* Request priority -- ignored */
struct __aiocb_private _aiocb_private;