From 96b8882a9648e5008cd1bc4d3bc6ce5df72b2953 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Tue, 5 Sep 2000 18:58:07 +0000 Subject: [PATCH] Make the basic AIO functions, i.e., aio_read() and aio_write(), work on the Alpha, at least, for the aio_qphysio() case. Specifically, fix an unaligned access fault. --- sys/sys/aio.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/sys/aio.h b/sys/sys/aio.h index 946ac0bec4c8..9ca09204965e 100644 --- a/sys/sys/aio.h +++ b/sys/sys/aio.h @@ -65,9 +65,9 @@ * directly. */ struct __aiocb_private { - int status; - int error; - int privatemodes; + long status; + long error; + long privatemodes; int active; int tid; int threadinfo;