summaryrefslogtreecommitdiffstats
path: root/sys/sys/aio.h
diff options
context:
space:
mode:
authoralc <alc@FreeBSD.org>2000-09-05 18:58:07 +0000
committeralc <alc@FreeBSD.org>2000-09-05 18:58:07 +0000
commitcff734f9f769463a30d41691346c6f6865b04551 (patch)
tree8d113be966ed09d5c80b596ef1c2a8298f10050f /sys/sys/aio.h
parentd0a5f2be36f5b70acb1ddff96b94a91b1ef80315 (diff)
downloadFreeBSD-src-cff734f9f769463a30d41691346c6f6865b04551.zip
FreeBSD-src-cff734f9f769463a30d41691346c6f6865b04551.tar.gz
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.
Diffstat (limited to 'sys/sys/aio.h')
-rw-r--r--sys/sys/aio.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/aio.h b/sys/sys/aio.h
index 946ac0b..9ca0920 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;
OpenPOWER on IntegriCloud