summaryrefslogtreecommitdiffstats
path: root/sys/kern/vfs_aio.c
diff options
context:
space:
mode:
authordavidxu <davidxu@FreeBSD.org>2005-11-04 09:41:00 +0000
committerdavidxu <davidxu@FreeBSD.org>2005-11-04 09:41:00 +0000
commitae161ac2394e00bb3afca0667a13243d7963dfe2 (patch)
tree71fac15496379ce07a2aa8da1c428250c9de46a5 /sys/kern/vfs_aio.c
parent40db0365d4b9fcce49ec895c834e40001ae50dc0 (diff)
downloadFreeBSD-src-ae161ac2394e00bb3afca0667a13243d7963dfe2.zip
FreeBSD-src-ae161ac2394e00bb3afca0667a13243d7963dfe2.tar.gz
Fix name compatible problem with POSIX standard. the sigval_ptr and
sigval_int really should be sival_ptr and sival_int. Also sigev_notify_function accepts a union sigval value but not a pointer.
Diffstat (limited to 'sys/kern/vfs_aio.c')
-rw-r--r--sys/kern/vfs_aio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_aio.c b/sys/kern/vfs_aio.c
index 534b87d..e926217 100644
--- a/sys/kern/vfs_aio.c
+++ b/sys/kern/vfs_aio.c
@@ -1481,7 +1481,7 @@ _aio_aqueue(struct thread *td, struct aiocb *job, struct aio_liojob *lj,
if (aiocbe->uaiocb.aio_sigevent.sigev_notify == SIGEV_KEVENT) {
kev.ident = aiocbe->uaiocb.aio_sigevent.sigev_notify_kqueue;
- kev.udata = aiocbe->uaiocb.aio_sigevent.sigev_value.sigval_ptr;
+ kev.udata = aiocbe->uaiocb.aio_sigevent.sigev_value.sival_ptr;
} else
goto no_kqueue;
if ((u_int)kev.ident >= fdp->fd_nfiles ||
@@ -2117,7 +2117,7 @@ do_lio_listio(struct thread *td, struct lio_listio_args *uap, int oldsigev)
if (lj->lioj_signal.sigev_notify == SIGEV_KEVENT) {
/* Assume only new style KEVENT */
kev.ident = lj->lioj_signal.sigev_notify_kqueue;
- kev.udata = lj->lioj_signal.sigev_value.sigval_ptr;
+ kev.udata = lj->lioj_signal.sigev_value.sival_ptr;
if ((u_int)kev.ident >= p->p_fd->fd_nfiles ||
(kq_fp = p->p_fd->fd_ofiles[kev.ident]) == NULL ||
OpenPOWER on IntegriCloud