1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

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.
This commit is contained in:
Alan Cox 2000-09-05 18:58:07 +00:00
parent f245fa0e59
commit 96b8882a96
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=65484

View File

@ -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;