From: Jim Rees Date: Thu, 28 Jul 2005 22:48:35 +0000 (+0000) Subject: STABLE14-openafs-sleep-20050726 X-Git-Tag: openafs-devel-1_3_86~5 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=40b2927a58150b53209a34cf3c5f4e8ffd85a555;p=packages%2Fo%2Fopenafs.git STABLE14-openafs-sleep-20050726 tsleep on "afsslp" in afs_osi_Sleep (cherry picked from commit 575cbd4a2f231f7bcaaf92a356afa61a4ae170dc) --- diff --git a/src/afs/OBSD/osi_sleep.c b/src/afs/OBSD/osi_sleep.c index 4e6b77edb..5010a317e 100644 --- a/src/afs/OBSD/osi_sleep.c +++ b/src/afs/OBSD/osi_sleep.c @@ -115,17 +115,14 @@ afs_osi_Sleep(void *event) { AFS_ASSERT_GLOCK(); AFS_GUNLOCK(); - tsleep(event, PVFS, "afs", 0); + tsleep(event, PVFS, "afsslp", 0); AFS_GLOCK(); } int afs_osi_SleepSig(void *event) { - AFS_ASSERT_GLOCK(); - AFS_GUNLOCK(); - tsleep(event, PVFS, "afs", 0); - AFS_GLOCK(); + afs_osi_Sleep(event); return 0; }