X-Git-Url: https://git.openafs.org/?p=openafs.git;a=blobdiff_plain;f=src%2Fafs%2FOBSD%2Fosi_sleep.c;h=268ad7abbc0e42c85e6e9de89eca0912db513e36;hp=f22922f802eb5d983ab7ca08612ded8029db50f8;hb=081f1765839834e8e06e8d0b8294ab54ced5c238;hpb=54f056cc7a4a496c82eb6fdb9ba943c079702527 diff --git a/src/afs/OBSD/osi_sleep.c b/src/afs/OBSD/osi_sleep.c index f22922f..268ad7a 100644 --- a/src/afs/OBSD/osi_sleep.c +++ b/src/afs/OBSD/osi_sleep.c @@ -90,11 +90,11 @@ int afs_osi_Wait(afs_int32 ams, struct afs_osi_WaitHandle *ahandle, int aintok) AFS_GUNLOCK(); do { if (aintok) { - code = tsleep(&waitV, PCATCH | (PZERO+8), "afs_osi_Wait", timo); + code = tsleep(&waitV, PCATCH | PVFS, "afs_osi_Wait", timo); if (code) /* if interrupted, return EINTR */ code = EINTR; } else - tsleep(&waitV, (PZERO-3), "afs_osi_Wait", timo); + tsleep(&waitV, PVFS, "afs_osi_Wait", timo); /* if we were cancelled, quit now */ if (ahandle && (ahandle->proc == NULL)) {