From: Sascha Wildner Date: Thu, 1 Mar 2007 16:18:11 +0000 (+0000) Subject: Fix prototype. X-Git-Tag: v2.0.1~3434 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/11aec7f4d4c18fa9079d99ab728bd084d210115d Fix prototype. --- diff --git a/sys/kern/vfs_aio.c b/sys/kern/vfs_aio.c index eea97db8d4..3c2e1d6964 100644 --- a/sys/kern/vfs_aio.c +++ b/sys/kern/vfs_aio.c @@ -14,7 +14,7 @@ * of the author. This software is distributed AS-IS. * * $FreeBSD: src/sys/kern/vfs_aio.c,v 1.70.2.28 2003/05/29 06:15:35 alc Exp $ - * $DragonFly: src/sys/kern/vfs_aio.c,v 1.36 2007/03/01 01:46:52 corecode Exp $ + * $DragonFly: src/sys/kern/vfs_aio.c,v 1.37 2007/03/01 16:18:11 swildner Exp $ */ /* @@ -225,7 +225,7 @@ static int aio_aqueue(struct aiocb *job, int type); static void aio_physwakeup(struct bio *bio); static int aio_fphysio(struct aiocblist *aiocbe); static int aio_qphysio(struct proc *p, struct aiocblist *iocb); -static void aio_daemon(void *uproc); +static void aio_daemon(void *uproc, struct trapframe *frame); static void process_signal(void *aioj); SYSINIT(aio, SI_SUB_VFS, SI_ORDER_ANY, aio_onceonly, NULL);