94c70a92b7bdf617ee4e47c118a5b5f40f754f26
[openafs.git] / src / afs / DUX / osi_sleep.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
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
8  */
9
10 #include <afsconfig.h>
11 #include "../afs/param.h"
12
13 RCSID("$Header$");
14
15 #include "../afs/sysincludes.h" /* Standard vendor system headers */
16 #include "../afs/afsincludes.h" /* Afs-based standard headers */
17 #include "../afs/afs_stats.h"   /* afs statistics */
18
19
20
21 static int osi_TimedSleep(char *event, afs_int32 ams, int aintok);
22 void afs_osi_Wakeup(char *event);
23 void afs_osi_Sleep(char *event);
24
25 static char waitV;
26
27
28 void afs_osi_InitWaitHandle(struct afs_osi_WaitHandle *achandle)
29 {
30     AFS_STATCNT(osi_InitWaitHandle);
31     achandle->proc = (caddr_t) 0;
32 }
33
34 /* cancel osi_Wait */
35 void afs_osi_CancelWait(struct afs_osi_WaitHandle *achandle)
36 {
37     caddr_t proc;
38
39     AFS_STATCNT(osi_CancelWait);
40     proc = achandle->proc;
41     if (proc == 0) return;
42     achandle->proc = (caddr_t) 0;   /* so dude can figure out he was signalled */
43     afs_osi_Wakeup(&waitV);
44 }
45
46 /* afs_osi_Wait
47  * Waits for data on ahandle, or ams ms later.  ahandle may be null.
48  * Returns 0 if timeout and EINTR if signalled.
49  */
50 int afs_osi_Wait(afs_int32 ams, struct afs_osi_WaitHandle *ahandle, int aintok)
51 {
52     int code;
53     afs_int32 endTime, tid;
54
55     AFS_STATCNT(osi_Wait);
56     endTime = osi_Time() + (ams/1000);
57     if (ahandle)
58         ahandle->proc = (caddr_t) u.u_procp;
59     do {
60         AFS_ASSERT_GLOCK();
61         code = 0;
62         code = osi_TimedSleep(&waitV, ams, aintok);
63
64         if (code) break;        /* if something happened, quit now */
65         /* if we we're cancelled, quit now */
66         if (ahandle && (ahandle->proc == (caddr_t) 0)) {
67             /* we've been signalled */
68             break;
69         }
70     } while (osi_Time() < endTime);
71     return code;
72 }
73
74
75
76
77 typedef struct afs_event {
78     struct afs_event *next;     /* next in hash chain */
79     char *event;                /* lwp event: an address */
80     int refcount;               /* Is it in use? */
81     int seq;                    /* Sequence number: this is incremented
82                                    by wakeup calls; wait will not return until
83                                    it changes */
84     int cond;
85 } afs_event_t;
86
87 #define HASHSIZE 128
88 afs_event_t *afs_evhasht[HASHSIZE];/* Hash table for events */
89 #define afs_evhash(event)       (afs_uint32) ((((long)event)>>2) & (HASHSIZE-1));
90 int afs_evhashcnt = 0;
91
92 /* Get and initialize event structure corresponding to lwp event (i.e. address)
93  * */
94 static afs_event_t *afs_getevent(char *event)
95 {
96     afs_event_t *evp, *newp = 0;
97     int hashcode;
98
99     AFS_ASSERT_GLOCK();
100     hashcode = afs_evhash(event);
101     evp = afs_evhasht[hashcode];
102     while (evp) {
103         if (evp->event == event) {
104             evp->refcount++;
105             return evp;
106         }
107         if (evp->refcount == 0)
108             newp = evp;
109         evp = evp->next;
110     }
111     if (!newp) {
112         newp = (afs_event_t *) osi_AllocSmallSpace(sizeof (afs_event_t));
113         afs_evhashcnt++;
114         newp->next = afs_evhasht[hashcode];
115         afs_evhasht[hashcode] = newp;
116         newp->seq = 0;
117     }
118     newp->event = event;
119     newp->refcount = 1;
120     return newp;
121 }
122
123 /* Release the specified event */
124 #define relevent(evp) ((evp)->refcount--)
125
126
127 void afs_osi_Sleep(char *event)
128 {
129     struct afs_event *evp;
130     int seq;
131
132     evp = afs_getevent(event);
133     seq = evp->seq;
134     while (seq == evp->seq) {
135         AFS_ASSERT_GLOCK();
136         assert_wait((vm_offset_t)(&evp->cond), 0);
137         AFS_GUNLOCK();
138         thread_block();
139         AFS_GLOCK();
140     }
141     relevent(evp);
142 }
143
144 /* osi_TimedSleep
145  * 
146  * Arguments:
147  * event - event to sleep on
148  * ams --- max sleep time in milliseconds
149  * aintok - 1 if should sleep interruptibly
150  *
151  * Returns 0 if timeout and EINTR if signalled.
152  */
153 static int osi_TimedSleep(char *event, afs_int32 ams, int aintok)
154 {
155     int code = 0;
156     struct afs_event *evp;
157     int ticks;
158
159     ticks = ( ams * afs_hz )/1000;
160
161
162     evp = afs_getevent(event);
163
164     assert_wait((vm_offset_t)(&evp->cond), aintok);
165     AFS_GUNLOCK();
166     thread_set_timeout(ticks);
167     thread_block();
168     AFS_GLOCK();
169     if (current_thread()->wait_result != THREAD_AWAKENED)
170         code = EINTR;
171     
172     relevent(evp);
173     return code;
174 }
175
176
177 void afs_osi_Wakeup(char *event)
178 {
179     struct afs_event *evp;
180
181     evp = afs_getevent(event);
182     if (evp->refcount > 1) {
183         evp->seq++;    
184         thread_wakeup((vm_offset_t)(&evp->cond));
185     }
186     relevent(evp);
187 }