1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
/* ==== sleep.c ============================================================
* Copyright (c) 1993, 1994 by Chris Provenzano, proven@mit.edu
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Chris Provenzano.
* 4. The name of Chris Provenzano may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY CHRIS PROVENZANO ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL CHRIS PROVENZANO BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* Description : All the appropriate sleep routines.
*
* 1.00 93/12/28 proven
* -Started coding this file.
*
* 1.36 94/06/04 proven
* -Use new timer structure pthread_timer, that uses seconds
* -nano seconds. Rewrite all routines completely.
*
* 1.38 94/06/13 proven
* -switch pthread_timer to timespec
*/
#ifndef lint
static const char rcsid[] = "sleep.c,v 1.1 1995/06/11 00:21:41 hjl Exp";
#endif
#include <sys/time.h>
#include <pthread.h>
#include <signal.h>
#include <unistd.h>
#ifdef __linux__
#include <pthread/mit/sys/compat.h>
#else
#include <sys/compat.h>
#endif
struct pthread * pthread_sleep = NULL;
/* ==========================================================================
* sleep_compare_time()
*/
/* static inline int sleep_compare_time(struct timespec * time1,
struct timespec * time2) */
static int sleep_compare_time(struct timespec * time1, struct timespec * time2)
{
if ((time1->tv_sec < time2->tv_sec) ||
((time1->tv_sec == time2->tv_sec) &&
(time1->tv_nsec < time2->tv_nsec))) {
return(-1);
}
if ((time1->tv_sec == time2->tv_sec) && (time1->tv_nsec == time2->tv_nsec)){
return(0);
}
return(1);
}
/* ==========================================================================
* machdep_stop_timer()
*
* Returns the time left on the timer.
*/
static struct itimerval timestop = { { 0, 0 }, { 0, 0 } };
void machdep_stop_timer(struct timespec *current)
{
struct itimerval timenow;
setitimer(ITIMER_REAL, & timestop, & timenow);
if (current) {
current->tv_nsec = timenow.it_value.tv_usec * 1000;
current->tv_sec = timenow.it_value.tv_sec;
}
}
/* ==========================================================================
* machdep_start_timer()
*/
int machdep_start_timer(struct timespec *current, struct timespec *wakeup)
{
struct itimerval timeout;
timeout.it_value.tv_usec = (wakeup->tv_nsec - current->tv_nsec) / 1000;
timeout.it_value.tv_sec = wakeup->tv_sec - current->tv_sec;
timeout.it_interval.tv_usec = 0;
timeout.it_interval.tv_sec = 0;
if (timeout.it_value.tv_usec < 0) {
timeout.it_value.tv_usec += 1000000;
timeout.it_value.tv_sec--;
}
if ((!(timeout.it_value.tv_sec < 0)) &&
((timeout.it_value.tv_usec) || (timeout.it_value.tv_sec))) {
setitimer(ITIMER_REAL, & timeout, NULL);
} else {
/*
* There is no time on the timer.
* This shouldn't happen,
* but isn't fatal.
*/
sig_handler_fake(SIGALRM);
}
return(OK);
}
/* ==========================================================================
* sleep_schedule()
*
* Assumes that the current thread is the thread to be scheduled
* and that the kthread is already locked.
*/
void sleep_schedule(struct timespec *current_time, struct timespec *new_time)
{
struct pthread * pthread_sleep_current, * pthread_sleep_prev;
/* Record the new time as the current thread's wakeup time. */
pthread_run->wakeup_time = *new_time;
/* any threads? */
if (pthread_sleep_current = pthread_sleep) {
if (sleep_compare_time(&(pthread_sleep_current->wakeup_time),
new_time) <= 0) {
/* Don't need to restart timer */
while (pthread_sleep_current->sll) {
pthread_sleep_prev = pthread_sleep_current;
pthread_sleep_current = pthread_sleep_current->sll;
if (sleep_compare_time(&(pthread_sleep_current->wakeup_time),
new_time) > 0) {
pthread_run->sll = pthread_sleep_current;
pthread_sleep_prev->sll = pthread_run;
return;
}
}
/* No more threads in queue, attach pthread_run to end of list */
pthread_sleep_current->sll = pthread_run;
pthread_run->sll = NULL;
} else {
/* Start timer and enqueue thread */
machdep_start_timer(current_time, new_time);
pthread_run->sll = pthread_sleep_current;
pthread_sleep = pthread_run;
}
} else {
/* Start timer and enqueue thread */
machdep_start_timer(current_time, new_time);
pthread_sleep = pthread_run;
pthread_run->sll = NULL;
}
}
/* ==========================================================================
* sleep_wakeup()
*
* This routine is called by the interrupt handler, which has already
* locked the current kthread. Since all threads on this list are owned
* by the current kthread, rescheduling won't be a problem.
*/
int sleep_spurious_wakeup = 0;
int sleep_wakeup()
{
struct pthread *pthread_sleep_next;
struct timespec current_time;
int ret = 0;
if (pthread_sleep == NULL) {
return(NOTOK);
}
machdep_gettimeofday(¤t_time);
if (sleep_compare_time(&(pthread_sleep->wakeup_time), ¤t_time) > 0) {
machdep_start_timer(¤t_time, &(pthread_sleep->wakeup_time));
sleep_spurious_wakeup++;
return(OK);
}
do {
if (pthread_sleep->pthread_priority > ret) {
ret = pthread_sleep->pthread_priority;
}
/*
* Clean up removed thread and start it running again.
*
* Note: It is VERY important to remove the thread form the
* current queue before putting it on the run queue.
* Both queues use pthread_sleep->next, and the thread that points
* to pthread_sleep should point to pthread_sleep->next then
* pthread_sleep should be put on the run queue.
*/
if ((SET_PF_DONE_EVENT(pthread_sleep)) == OK) {
if (pthread_sleep->queue)
pthread_queue_remove(pthread_sleep->queue, pthread_sleep);
pthread_prio_queue_enq(pthread_current_prio_queue, pthread_sleep);
pthread_sleep->state = PS_RUNNING;
}
pthread_sleep_next = pthread_sleep->sll;
pthread_sleep->sll = NULL;
if ((pthread_sleep = pthread_sleep_next) == NULL) {
/* No more threads on sleep queue */
return(ret);
}
} while (sleep_compare_time(&(pthread_sleep->wakeup_time),
&(current_time)) <= 0);
/* Start timer for next time interval */
machdep_start_timer(¤t_time, &(pthread_sleep->wakeup_time));
return(ret);
}
/* ==========================================================================
* __sleep()
*/
void __sleep(struct timespec * time_to_sleep)
{
struct pthread *pthread_sleep_prev;
struct timespec current_time, wakeup_time;
pthread_sched_prevent();
/* Get real time */
machdep_gettimeofday(¤t_time);
wakeup_time.tv_sec = current_time.tv_sec + time_to_sleep->tv_sec;
wakeup_time.tv_nsec = current_time.tv_nsec + time_to_sleep->tv_nsec;
sleep_schedule(¤t_time, &wakeup_time);
/* Reschedule thread */
SET_PF_WAIT_EVENT(pthread_run);
pthread_resched_resume(PS_SLEEP_WAIT);
CLEAR_PF_DONE_EVENT(pthread_run);
/* Return actual time slept */
time_to_sleep->tv_sec = pthread_run->wakeup_time.tv_sec;
time_to_sleep->tv_nsec = pthread_run->wakeup_time.tv_nsec;
}
#if 0
/* ==========================================================================
* nanosleep()
*/
unsigned int nanosleep(unsigned int nseconds)
{
struct timespec time_to_sleep;
if (nseconds) {
time_to_sleep.tv_nsec = nseconds;
time_to_sleep.tv_sec = 0;
__sleep(&time_to_sleep);
nseconds = time_to_sleep.tv_nsec;
}
return(nseconds);
}
#endif
/* ==========================================================================
* usleep()
*/
void usleep(unsigned long useconds)
{
struct timespec time_to_sleep;
if (useconds) {
time_to_sleep.tv_nsec = (useconds % 1000000) * 1000;
time_to_sleep.tv_sec = useconds / 1000000;
__sleep(&time_to_sleep);
}
}
/* ==========================================================================
* sleep()
*/
unsigned int sleep(unsigned int seconds)
{
struct timespec time_to_sleep;
if (seconds) {
time_to_sleep.tv_sec = seconds;
time_to_sleep.tv_nsec = 0;
__sleep(&time_to_sleep);
seconds = time_to_sleep.tv_sec;
}
return(seconds);
}
/* ==========================================================================
* sleep_cancel()
*
* Cannot be called while kernel is locked.
* Does not wake sleeping thread up, just remove it from the sleep queue.
*/
int sleep_cancel(struct pthread * pthread)
{
struct timespec current_time, delta_time;
struct pthread * pthread_last;
int rval = NOTOK;
/* Lock sleep queue, Note this may be on a different kthread queue */
pthread_sched_prevent();
if (pthread_sleep) {
if (pthread == pthread_sleep) {
rval = OK;
machdep_stop_timer(&delta_time);
if (pthread_sleep = pthread_sleep->sll) {
current_time = delta_time;
current_time.tv_sec += pthread_sleep->wakeup_time.tv_sec;
current_time.tv_nsec += pthread_sleep->wakeup_time.tv_nsec;
if (current_time.tv_nsec > 1000000000) {
current_time.tv_nsec -= 1000000000;
current_time.tv_sec++;
}
machdep_start_timer(&(current_time),
&(pthread_sleep->wakeup_time));
}
} else {
for (pthread_last = pthread_sleep; pthread_last;
pthread_last = pthread_last->sll) {
if (pthread_last->sll == pthread) {
pthread_last->sll = pthread->sll;
rval = OK;
break;
}
}
}
}
pthread_sched_resume();
pthread->sll = NULL;
return(rval);
}
|