diff options
author | alc <alc@FreeBSD.org> | 2000-09-05 18:58:07 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 2000-09-05 18:58:07 +0000 |
commit | cff734f9f769463a30d41691346c6f6865b04551 (patch) | |
tree | 8d113be966ed09d5c80b596ef1c2a8298f10050f /sys | |
parent | d0a5f2be36f5b70acb1ddff96b94a91b1ef80315 (diff) | |
download | FreeBSD-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')
-rw-r--r-- | sys/sys/aio.h | 6 |
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; |