1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-18 15:30:21 +00:00

Replace 'sleep()' with 'tsleep()'

Accidentally imported from Kirk's codebase.

Pointed out by: various.
This commit is contained in:
Julian Elischer 1998-06-10 22:02:14 +00:00
parent 9d8b200937
commit 32f5d4d843
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=36874
2 changed files with 8 additions and 4 deletions

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95
* $Id: vfs_subr.c,v 1.154 1998/06/07 17:11:46 dfr Exp $
* $Id: vfs_subr.c,v 1.155 1998/06/10 18:13:19 julian Exp $
*/
/*
@ -584,7 +584,9 @@ vinvalbuf(vp, flags, cred, p, slpflag, slptimeo)
s = splbio();
while (vp->v_numoutput) {
vp->v_flag |= VBWAIT;
sleep((caddr_t)&vp->v_numoutput, PRIBIO + 1);
tsleep((caddr_t)&vp->v_numoutput,
slpflag | (PRIBIO + 1),
"vinvlbuf", slptimeo);
}
if (vp->v_dirtyblkhd.lh_first != NULL) {
splx(s);

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95
* $Id: vfs_subr.c,v 1.154 1998/06/07 17:11:46 dfr Exp $
* $Id: vfs_subr.c,v 1.155 1998/06/10 18:13:19 julian Exp $
*/
/*
@ -584,7 +584,9 @@ vinvalbuf(vp, flags, cred, p, slpflag, slptimeo)
s = splbio();
while (vp->v_numoutput) {
vp->v_flag |= VBWAIT;
sleep((caddr_t)&vp->v_numoutput, PRIBIO + 1);
tsleep((caddr_t)&vp->v_numoutput,
slpflag | (PRIBIO + 1),
"vinvlbuf", slptimeo);
}
if (vp->v_dirtyblkhd.lh_first != NULL) {
splx(s);