7 the regents of the university of michigan
10 permission is granted to use, copy, create derivative works
11 and redistribute this software and such derivative works
12 for any purpose, so long as the name of the university of
13 michigan is not used in any advertising or publicity
14 pertaining to the use or distribution of this software
15 without specific, written prior authorization. if the
16 above copyright notice or any other identification of the
17 university of michigan is included in any copy of any
18 portion of this software, then the disclaimer below must
21 this software is provided as is, without representation
22 from the university of michigan as to its fitness for any
23 purpose, and without warranty by the university of
24 michigan of any kind, either express or implied, including
25 without limitation the implied warranties of
26 merchantability and fitness for a particular purpose. the
27 regents of the university of michigan shall not be liable
28 for any damages, including special, indirect, incidental, or
29 consequential damages, with respect to any claim arising
30 out of or in connection with the use of the software, even
31 if it has been or is hereafter advised of the possibility of
36 * Copyright 2000, International Business Machines Corporation and others.
37 * All Rights Reserved.
39 * This software has been released under the terms of the IBM Public
40 * License. For details, see the LICENSE file in the top-level source
41 * directory or online at http://www.openafs.org/dl/license10.html
44 #include <afsconfig.h>
45 #include "afs/param.h"
50 #include "afs/sysincludes.h" /* Standard vendor system headers */
51 #include "afs/afsincludes.h" /* Afs-based standard headers */
52 #include "afs/afs_stats.h" /* afs statistics */
58 afs_osi_InitWaitHandle(struct afs_osi_WaitHandle *achandle)
60 AFS_STATCNT(osi_InitWaitHandle);
61 achandle->proc = NULL;
66 afs_osi_CancelWait(struct afs_osi_WaitHandle *achandle)
70 AFS_STATCNT(osi_CancelWait);
71 proc = achandle->proc;
74 achandle->proc = NULL;
79 * Waits for data on ahandle, or ams ms later. ahandle may be null.
80 * Returns 0 if timeout and EINTR if signalled.
83 afs_osi_Wait(afs_int32 ams, struct afs_osi_WaitHandle *ahandle, int aintok)
86 struct timeval atv, endTime;
88 AFS_STATCNT(osi_Wait);
90 atv.tv_sec = ams / 1000;
91 atv.tv_usec = (ams % 1000) * 1000;
92 timeradd(&atv, &time, &endTime);
95 ahandle->proc = (caddr_t) curproc;
100 timersub(&endTime, &time, &atv);
101 timo = atv.tv_sec * hz + atv.tv_usec * hz / 1000000 + 1;
103 code = tsleep(&waitV, PCATCH | PVFS, "afs_W1", timo);
105 code = (code == EWOULDBLOCK) ? 0 : EINTR;
107 tsleep(&waitV, PVFS, "afs_W2", timo);
109 /* if we were cancelled, quit now */
110 if (ahandle && (ahandle->proc == NULL)) {
111 /* we've been signalled */
114 } while (timercmp(&time, &endTime, <));
121 afs_osi_Sleep(void *event)
125 tsleep(event, PVFS, "afs", 0);
130 afs_osi_SleepSig(void *event)
134 tsleep(event, PVFS, "afs", 0);
140 afs_osi_Wakeup(void *event)