2 * Copyright 2000, International Business Machines Corporation and others.
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
10 #include <afsconfig.h>
11 #include "afs/param.h"
14 #include "afs/sysincludes.h" /* Standard vendor system headers */
15 #include "afsincludes.h" /* Afs-based standard headers */
16 #include "afs/afs_stats.h" /* afs statistics */
21 AfsWaitHack(struct trb *trb)
24 /* this gets called at interrupt context; let's not tempt fate... */
25 AFS_STATCNT(WaitHack);
28 e_clear_wait(trb->func_data, THREAD_TIMED_OUT);
32 afs_osi_InitWaitHandle(struct afs_osi_WaitHandle *achandle)
34 AFS_STATCNT(osi_InitWaitHandle);
35 achandle->proc = (caddr_t) 0;
40 afs_osi_CancelWait(struct afs_osi_WaitHandle *achandle)
44 AFS_STATCNT(osi_CancelWait);
45 proc = achandle->proc;
48 achandle->proc = (caddr_t) 0; /* so dude can figure out he was signalled */
49 afs_osi_Wakeup(&waitV);
53 * Waits for data on ahandle, or ams ms later. ahandle may be null.
54 * Returns 0 if timeout and EINTR if signalled.
57 afs_osi_Wait(afs_int32 ams, struct afs_osi_WaitHandle *ahandle, int aintok)
60 afs_int32 endTime, tid;
62 AFS_STATCNT(osi_Wait);
63 endTime = osi_Time() + (ams / 1000);
65 ahandle->proc = (caddr_t) thread_self();
69 code = afs_osi_TimedSleep(&waitV, ams, aintok);
72 break; /* if something happened, quit now */
73 /* if we we're cancelled, quit now */
74 if (ahandle && (ahandle->proc == (caddr_t) 0)) {
75 /* we've been signalled */
78 } while (osi_Time() < endTime);
85 typedef struct afs_event {
86 struct afs_event *next; /* next in hash chain */
87 char *event; /* lwp event: an address */
88 int refcount; /* Is it in use? */
89 int seq; /* Sequence number: this is incremented
90 * by wakeup calls; wait will not return until
96 afs_event_t *afs_evhasht[HASHSIZE]; /* Hash table for events */
97 #define afs_evhash(event) (afs_uint32) ((((long)event)>>2) & (HASHSIZE-1));
98 int afs_evhashcnt = 0;
100 /* Get and initialize event structure corresponding to lwp event (i.e. address)
103 afs_getevent(char *event)
105 afs_event_t *evp, *newp = 0;
109 hashcode = afs_evhash(event);
110 evp = afs_evhasht[hashcode];
112 if (evp->event == event) {
116 if (evp->refcount == 0)
121 newp = (afs_event_t *) xmalloc(sizeof(afs_event_t), 5, pinned_heap);
123 newp->next = afs_evhasht[hashcode];
124 afs_evhasht[hashcode] = newp;
125 newp->cond = EVENT_NULL;
133 /* Release the specified event */
134 #define relevent(evp) ((evp)->refcount--)
138 afs_osi_Sleep(void *event)
140 struct afs_event *evp;
143 evp = afs_getevent(event);
145 while (seq == evp->seq) {
147 e_assert_wait(&evp->cond, 0);
156 afs_osi_SleepSig(void *event)
158 afs_osi_Sleep(event);
162 /* afs_osi_TimedSleep
165 * event - event to sleep on
166 * ams --- max sleep time in milliseconds
167 * aintok - 1 if should sleep interruptibly
169 * Returns 0 if timeout and EINTR if signalled.
172 afs_osi_TimedSleep(void *event, afs_int32 ams, int aintok)
175 struct afs_event *evp;
176 struct timestruc_t ticks;
180 ticks.tv_sec = ams / 1000;
181 ticks.tv_nsec = (ams - (ticks.tv_sec * 1000)) * 1000000;
184 evp = afs_getevent(event);
188 osi_Panic("talloc returned NULL");
190 trb->func = AfsWaitHack;
191 trb->eventlist = EVENT_NULL;
192 trb->ipri = INTTIMER;
193 trb->func_data = thread_self();
194 trb->timeout.it_value = ticks;
196 e_assert_wait(&evp->cond, aintok);
199 rc = e_block_thread();
201 if (rc == THREAD_INTERRUPTED)
212 afs_osi_Wakeup(void *event)
215 struct afs_event *evp;
217 evp = afs_getevent(event);
218 if (evp->refcount > 1) {
220 e_wakeup(&evp->cond);