Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/synch/waitq.c

    rb169619 re88eb48  
    11/*
    22 * Copyright (c) 2001-2004 Jakub Jermar
    3  * Copyright (c) 2022 Jiří Zárevúcky
    43 * All rights reserved.
    54 *
     
    4948#include <synch/waitq.h>
    5049#include <synch/spinlock.h>
    51 #include <preemption.h>
    5250#include <proc/thread.h>
    5351#include <proc/scheduler.h>
     
    5957#include <adt/list.h>
    6058#include <arch/cycle.h>
    61 #include <memw.h>
     59#include <mem.h>
     60
     61static void waitq_sleep_timed_out(void *);
     62static void waitq_complete_wakeup(waitq_t *);
    6263
    6364/** Initialize wait queue
     
    7576}
    7677
    77 /**
    78  * Initialize wait queue with an initial number of queued wakeups
    79  * (or a wakeup debt if negative).
    80  */
    81 void waitq_initialize_with_count(waitq_t *wq, int count)
    82 {
    83         waitq_initialize(wq);
    84         wq->wakeup_balance = count;
     78/** Handle timeout during waitq_sleep_timeout() call
     79 *
     80 * This routine is called when waitq_sleep_timeout() times out.
     81 * Interrupts are disabled.
     82 *
     83 * It is supposed to try to remove 'its' thread from the wait queue;
     84 * it can eventually fail to achieve this goal when these two events
     85 * overlap. In that case it behaves just as though there was no
     86 * timeout at all.
     87 *
     88 * @param data Pointer to the thread that called waitq_sleep_timeout().
     89 *
     90 */
     91void waitq_sleep_timed_out(void *data)
     92{
     93        thread_t *thread = (thread_t *) data;
     94        bool do_wakeup = false;
     95        DEADLOCK_PROBE_INIT(p_wqlock);
     96
     97        irq_spinlock_lock(&threads_lock, false);
     98        if (!thread_exists(thread))
     99                goto out;
     100
     101grab_locks:
     102        irq_spinlock_lock(&thread->lock, false);
     103
     104        waitq_t *wq;
     105        if ((wq = thread->sleep_queue)) {  /* Assignment */
     106                if (!irq_spinlock_trylock(&wq->lock)) {
     107                        irq_spinlock_unlock(&thread->lock, false);
     108                        DEADLOCK_PROBE(p_wqlock, DEADLOCK_THRESHOLD);
     109                        /* Avoid deadlock */
     110                        goto grab_locks;
     111                }
     112
     113                list_remove(&thread->wq_link);
     114                thread->saved_context = thread->sleep_timeout_context;
     115                do_wakeup = true;
     116                if (thread->sleep_composable)
     117                        wq->ignore_wakeups++;
     118                thread->sleep_queue = NULL;
     119                irq_spinlock_unlock(&wq->lock, false);
     120        }
     121
     122        thread->timeout_pending = false;
     123        irq_spinlock_unlock(&thread->lock, false);
     124
     125        if (do_wakeup)
     126                thread_ready(thread);
     127
     128out:
     129        irq_spinlock_unlock(&threads_lock, false);
     130}
     131
     132/** Interrupt sleeping thread.
     133 *
     134 * This routine attempts to interrupt a thread from its sleep in
     135 * a waitqueue. If the thread is not found sleeping, no action
     136 * is taken.
     137 *
     138 * The threads_lock must be already held and interrupts must be
     139 * disabled upon calling this function.
     140 *
     141 * @param thread Thread to be interrupted.
     142 *
     143 */
     144void waitq_interrupt_sleep(thread_t *thread)
     145{
     146        bool do_wakeup = false;
     147        DEADLOCK_PROBE_INIT(p_wqlock);
     148
     149        /*
     150         * The thread is quaranteed to exist because
     151         * threads_lock is held.
     152         */
     153
     154grab_locks:
     155        irq_spinlock_lock(&thread->lock, false);
     156
     157        waitq_t *wq;
     158        if ((wq = thread->sleep_queue)) {  /* Assignment */
     159                if (!(thread->sleep_interruptible)) {
     160                        /*
     161                         * The sleep cannot be interrupted.
     162                         */
     163                        irq_spinlock_unlock(&thread->lock, false);
     164                        return;
     165                }
     166
     167                if (!irq_spinlock_trylock(&wq->lock)) {
     168                        /* Avoid deadlock */
     169                        irq_spinlock_unlock(&thread->lock, false);
     170                        DEADLOCK_PROBE(p_wqlock, DEADLOCK_THRESHOLD);
     171                        goto grab_locks;
     172                }
     173
     174                if ((thread->timeout_pending) &&
     175                    (timeout_unregister(&thread->sleep_timeout)))
     176                        thread->timeout_pending = false;
     177
     178                list_remove(&thread->wq_link);
     179                thread->saved_context = thread->sleep_interruption_context;
     180                if (thread->sleep_composable)
     181                        wq->ignore_wakeups++;
     182                do_wakeup = true;
     183                thread->sleep_queue = NULL;
     184                irq_spinlock_unlock(&wq->lock, false);
     185        }
     186
     187        irq_spinlock_unlock(&thread->lock, false);
     188
     189        if (do_wakeup)
     190                thread_ready(thread);
    85191}
    86192
     
    88194        (((flags) & SYNCH_FLAGS_NON_BLOCKING) && ((usec) == 0))
    89195
    90 errno_t waitq_sleep(waitq_t *wq)
    91 {
    92         return _waitq_sleep_timeout(wq, SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE);
    93 }
    94 
    95 errno_t waitq_sleep_timeout(waitq_t *wq, uint32_t usec)
    96 {
    97         return _waitq_sleep_timeout(wq, usec, SYNCH_FLAGS_NON_BLOCKING);
    98 }
    99 
    100196/** Sleep until either wakeup, timeout or interruption occurs
    101197 *
     198 * This is a sleep implementation which allows itself to time out or to be
     199 * interrupted from the sleep, restoring a failover context.
     200 *
    102201 * Sleepers are organised in a FIFO fashion in a structure called wait queue.
    103202 *
    104  * Other functions as waitq_sleep() and all the *_timeout() functions are
    105  * implemented using this function.
     203 * This function is really basic in that other functions as waitq_sleep()
     204 * and all the *_timeout() functions use it.
    106205 *
    107206 * @param wq    Pointer to wait queue.
     
    109208 * @param flags Specify mode of the sleep.
    110209 *
     210 * @param[out] blocked  On return, regardless of the return code,
     211 *                      `*blocked` is set to `true` iff the thread went to
     212 *                      sleep.
     213 *
    111214 * The sleep can be interrupted only if the
    112215 * SYNCH_FLAGS_INTERRUPTIBLE bit is specified in flags.
     
    122225 * call will immediately return, reporting either success or failure.
    123226 *
    124  * @return ETIMEOUT, meaning that the sleep timed out, or a nonblocking call
    125  *                   returned unsuccessfully.
    126  * @return EINTR, meaning that somebody interrupted the sleeping thread.
     227 * @return EAGAIN, meaning that the sleep failed because it was requested
     228 *                 as SYNCH_FLAGS_NON_BLOCKING, but there was no pending wakeup.
     229 * @return ETIMEOUT, meaning that the sleep timed out.
     230 * @return EINTR, meaning that somebody interrupted the sleeping
     231 *         thread. Check the value of `*blocked` to see if the thread slept,
     232 *         or if a pending interrupt forced it to return immediately.
    127233 * @return EOK, meaning that none of the above conditions occured, and the
    128  *              thread was woken up successfuly by `waitq_wake_*()`.
    129  *
    130  */
    131 errno_t _waitq_sleep_timeout(waitq_t *wq, uint32_t usec, unsigned int flags)
     234 *              thread was woken up successfuly by `waitq_wakeup()`. Check
     235 *              the value of `*blocked` to see if the thread slept or if
     236 *              the wakeup was already pending.
     237 *
     238 */
     239errno_t waitq_sleep_timeout(waitq_t *wq, uint32_t usec, unsigned int flags, bool *blocked)
    132240{
    133241        assert((!PREEMPTION_DISABLED) || (PARAM_NON_BLOCKING(flags, usec)));
    134         return waitq_sleep_timeout_unsafe(wq, usec, flags, waitq_sleep_prepare(wq));
     242
     243        ipl_t ipl = waitq_sleep_prepare(wq);
     244        bool nblocked;
     245        errno_t rc = waitq_sleep_timeout_unsafe(wq, usec, flags, &nblocked);
     246        waitq_sleep_finish(wq, nblocked, ipl);
     247
     248        if (blocked != NULL) {
     249                *blocked = nblocked;
     250        }
     251        return rc;
    135252}
    136253
     
    145262 *
    146263 */
    147 wait_guard_t waitq_sleep_prepare(waitq_t *wq)
    148 {
    149         ipl_t ipl = interrupts_disable();
     264ipl_t waitq_sleep_prepare(waitq_t *wq)
     265{
     266        ipl_t ipl;
     267
     268restart:
     269        ipl = interrupts_disable();
     270
     271        if (THREAD) {  /* Needed during system initiailzation */
     272                /*
     273                 * Busy waiting for a delayed timeout.
     274                 * This is an important fix for the race condition between
     275                 * a delayed timeout and a next call to waitq_sleep_timeout().
     276                 * Simply, the thread is not allowed to go to sleep if
     277                 * there are timeouts in progress.
     278                 *
     279                 */
     280                irq_spinlock_lock(&THREAD->lock, false);
     281
     282                if (THREAD->timeout_pending) {
     283                        irq_spinlock_unlock(&THREAD->lock, false);
     284                        interrupts_restore(ipl);
     285                        goto restart;
     286                }
     287
     288                irq_spinlock_unlock(&THREAD->lock, false);
     289        }
     290
    150291        irq_spinlock_lock(&wq->lock, false);
    151         return (wait_guard_t) {
    152                 .ipl = ipl,
    153         };
    154 }
    155 
    156 errno_t waitq_sleep_unsafe(waitq_t *wq, wait_guard_t guard)
    157 {
    158         return waitq_sleep_timeout_unsafe(wq, SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE, guard);
     292        return ipl;
     293}
     294
     295/** Finish waiting in a wait queue.
     296 *
     297 * This function restores interrupts to the state that existed prior
     298 * to the call to waitq_sleep_prepare(). If necessary, the wait queue
     299 * lock is released.
     300 *
     301 * @param wq       Wait queue.
     302 * @param blocked  Out parameter of waitq_sleep_timeout_unsafe().
     303 * @param ipl      Interrupt level returned by waitq_sleep_prepare().
     304 *
     305 */
     306void waitq_sleep_finish(waitq_t *wq, bool blocked, ipl_t ipl)
     307{
     308        if (blocked) {
     309                /*
     310                 * Wait for a waitq_wakeup() or waitq_unsleep() to complete
     311                 * before returning from waitq_sleep() to the caller. Otherwise
     312                 * the caller might expect that the wait queue is no longer used
     313                 * and deallocate it (although the wakeup on a another cpu has
     314                 * not yet completed and is using the wait queue).
     315                 *
     316                 * Note that we have to do this for EOK and EINTR, but not
     317                 * necessarily for ETIMEOUT where the timeout handler stops
     318                 * using the waitq before waking us up. To be on the safe side,
     319                 * ensure the waitq is not in use anymore in this case as well.
     320                 */
     321                waitq_complete_wakeup(wq);
     322        } else {
     323                irq_spinlock_unlock(&wq->lock, false);
     324        }
     325
     326        interrupts_restore(ipl);
    159327}
    160328
     
    162330 *
    163331 * This function implements logic of sleeping in a wait queue.
    164  * This call must be preceded by a call to waitq_sleep_prepare().
     332 * This call must be preceded by a call to waitq_sleep_prepare()
     333 * and followed by a call to waitq_sleep_finish().
    165334 *
    166335 * @param wq    See waitq_sleep_timeout().
     
    173342 *
    174343 */
    175 errno_t waitq_sleep_timeout_unsafe(waitq_t *wq, uint32_t usec, unsigned int flags, wait_guard_t guard)
    176 {
    177         errno_t rc;
     344errno_t waitq_sleep_timeout_unsafe(waitq_t *wq, uint32_t usec, unsigned int flags, bool *blocked)
     345{
     346        *blocked = false;
     347
     348        /* Checks whether to go to sleep at all */
     349        if (wq->missed_wakeups) {
     350                wq->missed_wakeups--;
     351                return EOK;
     352        } else {
     353                if (PARAM_NON_BLOCKING(flags, usec)) {
     354                        /* Return immediately instead of going to sleep */
     355                        return EAGAIN;
     356                }
     357        }
    178358
    179359        /*
    180          * If true, and this thread's sleep returns without a wakeup
    181          * (timed out or interrupted), waitq ignores the next wakeup.
    182          * This is necessary for futex to be able to handle those conditions.
     360         * Now we are firmly decided to go to sleep.
     361         *
    183362         */
    184         bool sleep_composable = (flags & SYNCH_FLAGS_FUTEX);
    185         bool interruptible = (flags & SYNCH_FLAGS_INTERRUPTIBLE);
    186 
    187         if (wq->closed) {
    188                 rc = EOK;
    189                 goto exit;
    190         }
    191 
    192         /* Checks whether to go to sleep at all */
    193         if (wq->wakeup_balance > 0) {
    194                 wq->wakeup_balance--;
    195 
    196                 rc = EOK;
    197                 goto exit;
    198         }
    199 
    200         if (PARAM_NON_BLOCKING(flags, usec)) {
    201                 /* Return immediately instead of going to sleep */
    202                 rc = ETIMEOUT;
    203                 goto exit;
    204         }
    205 
    206         /* Just for debugging output. */
    207         atomic_store_explicit(&THREAD->sleep_queue, wq, memory_order_relaxed);
     363        irq_spinlock_lock(&THREAD->lock, false);
     364
     365        THREAD->sleep_composable = (flags & SYNCH_FLAGS_FUTEX);
     366
     367        if (flags & SYNCH_FLAGS_INTERRUPTIBLE) {
     368                /*
     369                 * If the thread was already interrupted,
     370                 * don't go to sleep at all.
     371                 */
     372                if (THREAD->interrupted) {
     373                        irq_spinlock_unlock(&THREAD->lock, false);
     374                        return EINTR;
     375                }
     376
     377                /*
     378                 * Set context that will be restored if the sleep
     379                 * of this thread is ever interrupted.
     380                 */
     381                THREAD->sleep_interruptible = true;
     382                if (!context_save(&THREAD->sleep_interruption_context)) {
     383                        /* Short emulation of scheduler() return code. */
     384                        THREAD->last_cycle = get_cycle();
     385                        irq_spinlock_unlock(&THREAD->lock, false);
     386                        return EINTR;
     387                }
     388        } else
     389                THREAD->sleep_interruptible = false;
     390
     391        if (usec) {
     392                /* We use the timeout variant. */
     393                if (!context_save(&THREAD->sleep_timeout_context)) {
     394                        /* Short emulation of scheduler() return code. */
     395                        THREAD->last_cycle = get_cycle();
     396                        irq_spinlock_unlock(&THREAD->lock, false);
     397                        return ETIMEOUT;
     398                }
     399
     400                THREAD->timeout_pending = true;
     401                timeout_register(&THREAD->sleep_timeout, (uint64_t) usec,
     402                    waitq_sleep_timed_out, THREAD);
     403        }
     404
     405        list_append(&THREAD->wq_link, &wq->sleepers);
    208406
    209407        /*
    210          * This thread_t field is synchronized exclusively via
    211          * waitq lock of the waitq currently listing it.
     408         * Suspend execution.
     409         *
    212410         */
    213         list_append(&THREAD->wq_link, &wq->sleepers);
    214 
    215         /* Needs to be run when interrupts are still disabled. */
    216         deadline_t deadline = usec > 0 ?
    217             timeout_deadline_in_usec(usec) : DEADLINE_NEVER;
    218 
    219         while (true) {
    220                 bool terminating = (thread_wait_start() == THREAD_TERMINATING);
    221                 if (terminating && interruptible) {
    222                         rc = EINTR;
    223                         goto exit;
    224                 }
    225 
    226                 irq_spinlock_unlock(&wq->lock, false);
    227 
    228                 bool timed_out = (thread_wait_finish(deadline) == THREAD_WAIT_TIMEOUT);
    229 
    230                 /*
    231                  * We always need to re-lock the WQ, since concurrently running
    232                  * waitq_wakeup() may still not have exitted.
    233                  * If we didn't always do this, we'd risk waitq_wakeup() that woke us
    234                  * up still running on another CPU even after this function returns,
    235                  * and that would be an issue if the waitq is allocated locally to
    236                  * wait for a one-off asynchronous event. We'd need more external
    237                  * synchronization in that case, and that would be a pain.
    238                  *
    239                  * On the plus side, always regaining a lock simplifies cleanup.
    240                  */
    241                 irq_spinlock_lock(&wq->lock, false);
    242 
    243                 if (!link_in_use(&THREAD->wq_link)) {
    244                         /*
    245                          * We were woken up by the desired event. Return success,
    246                          * regardless of any concurrent timeout or interruption.
    247                          */
    248                         rc = EOK;
    249                         goto exit;
    250                 }
    251 
    252                 if (timed_out) {
    253                         rc = ETIMEOUT;
    254                         goto exit;
    255                 }
    256 
    257                 /* Interrupted for some other reason. */
    258         }
    259 
    260 exit:
    261         if (THREAD)
    262                 list_remove(&THREAD->wq_link);
    263 
    264         if (rc != EOK && sleep_composable)
    265                 wq->wakeup_balance--;
    266 
    267         if (THREAD)
    268                 atomic_store_explicit(&THREAD->sleep_queue, NULL, memory_order_relaxed);
    269 
     411        THREAD->state = Sleeping;
     412        THREAD->sleep_queue = wq;
     413
     414        /*
     415         * Must be before entry to scheduler, because there are multiple
     416         * return vectors.
     417         */
     418        *blocked = true;
     419
     420        irq_spinlock_unlock(&THREAD->lock, false);
     421
     422        /* wq->lock is released in scheduler_separated_stack() */
     423        scheduler();
     424
     425        return EOK;
     426}
     427
     428/** Wake up first thread sleeping in a wait queue
     429 *
     430 * Wake up first thread sleeping in a wait queue. This is the SMP- and IRQ-safe
     431 * wrapper meant for general use.
     432 *
     433 * Besides its 'normal' wakeup operation, it attempts to unregister possible
     434 * timeout.
     435 *
     436 * @param wq   Pointer to wait queue.
     437 * @param mode Wakeup mode.
     438 *
     439 */
     440void waitq_wakeup(waitq_t *wq, wakeup_mode_t mode)
     441{
     442        irq_spinlock_lock(&wq->lock, true);
     443        _waitq_wakeup_unsafe(wq, mode);
     444        irq_spinlock_unlock(&wq->lock, true);
     445}
     446
     447/** If there is a wakeup in progress actively waits for it to complete.
     448 *
     449 * The function returns once the concurrently running waitq_wakeup()
     450 * exits. It returns immediately if there are no concurrent wakeups
     451 * at the time.
     452 *
     453 * Interrupts must be disabled.
     454 *
     455 * Example usage:
     456 * @code
     457 * void callback(waitq *wq)
     458 * {
     459 *     // Do something and notify wait_for_completion() that we're done.
     460 *     waitq_wakeup(wq);
     461 * }
     462 * void wait_for_completion(void)
     463 * {
     464 *     waitq wg;
     465 *     waitq_initialize(&wq);
     466 *     // Run callback() in the background, pass it wq.
     467 *     do_asynchronously(callback, &wq);
     468 *     // Wait for callback() to complete its work.
     469 *     waitq_sleep(&wq);
     470 *     // callback() completed its work, but it may still be accessing
     471 *     // wq in waitq_wakeup(). Therefore it is not yet safe to return
     472 *     // from waitq_sleep() or it would clobber up our stack (where wq
     473 *     // is stored). waitq_sleep() ensures the wait queue is no longer
     474 *     // in use by invoking waitq_complete_wakeup() internally.
     475 *
     476 *     // waitq_sleep() returned, it is safe to free wq.
     477 * }
     478 * @endcode
     479 *
     480 * @param wq  Pointer to a wait queue.
     481 */
     482static void waitq_complete_wakeup(waitq_t *wq)
     483{
     484        assert(interrupts_disabled());
     485
     486        irq_spinlock_lock(&wq->lock, false);
    270487        irq_spinlock_unlock(&wq->lock, false);
    271         interrupts_restore(guard.ipl);
    272         return rc;
    273 }
    274 
    275 static void _wake_one(waitq_t *wq)
    276 {
    277         /* Pop one thread from the queue and wake it up. */
    278         thread_t *thread = list_get_instance(list_first(&wq->sleepers), thread_t, wq_link);
     488}
     489
     490/** Internal SMP- and IRQ-unsafe version of waitq_wakeup()
     491 *
     492 * This is the internal SMP- and IRQ-unsafe version of waitq_wakeup(). It
     493 * assumes wq->lock is already locked and interrupts are already disabled.
     494 *
     495 * @param wq   Pointer to wait queue.
     496 * @param mode If mode is WAKEUP_FIRST, then the longest waiting
     497 *             thread, if any, is woken up. If mode is WAKEUP_ALL, then
     498 *             all waiting threads, if any, are woken up. If there are
     499 *             no waiting threads to be woken up, the missed wakeup is
     500 *             recorded in the wait queue.
     501 *
     502 */
     503void _waitq_wakeup_unsafe(waitq_t *wq, wakeup_mode_t mode)
     504{
     505        size_t count = 0;
     506
     507        assert(interrupts_disabled());
     508        assert(irq_spinlock_locked(&wq->lock));
     509
     510        if (wq->ignore_wakeups > 0) {
     511                if (mode == WAKEUP_FIRST) {
     512                        wq->ignore_wakeups--;
     513                        return;
     514                }
     515                wq->ignore_wakeups = 0;
     516        }
     517
     518loop:
     519        if (list_empty(&wq->sleepers)) {
     520                wq->missed_wakeups++;
     521                if ((count) && (mode == WAKEUP_ALL))
     522                        wq->missed_wakeups--;
     523
     524                return;
     525        }
     526
     527        count++;
     528        thread_t *thread = list_get_instance(list_first(&wq->sleepers),
     529            thread_t, wq_link);
     530
     531        /*
     532         * Lock the thread prior to removing it from the wq.
     533         * This is not necessary because of mutual exclusion
     534         * (the link belongs to the wait queue), but because
     535         * of synchronization with waitq_sleep_timed_out()
     536         * and thread_interrupt_sleep().
     537         *
     538         * In order for these two functions to work, the following
     539         * invariant must hold:
     540         *
     541         * thread->sleep_queue != NULL <=> thread sleeps in a wait queue
     542         *
     543         * For an observer who locks the thread, the invariant
     544         * holds only when the lock is held prior to removing
     545         * it from the wait queue.
     546         *
     547         */
     548        irq_spinlock_lock(&thread->lock, false);
    279549        list_remove(&thread->wq_link);
    280         thread_wakeup(thread);
    281 }
    282 
    283 /**
    284  * Meant for implementing condvar signal.
    285  * Always wakes one thread if there are any sleeping,
    286  * has no effect if no threads are waiting for wakeup.
    287  */
    288 void waitq_signal(waitq_t *wq)
    289 {
     550
     551        if ((thread->timeout_pending) &&
     552            (timeout_unregister(&thread->sleep_timeout)))
     553                thread->timeout_pending = false;
     554
     555        thread->sleep_queue = NULL;
     556        irq_spinlock_unlock(&thread->lock, false);
     557
     558        thread_ready(thread);
     559
     560        if (mode == WAKEUP_ALL)
     561                goto loop;
     562}
     563
     564/** Get the missed wakeups count.
     565 *
     566 * @param wq    Pointer to wait queue.
     567 * @return      The wait queue's missed_wakeups count.
     568 */
     569int waitq_count_get(waitq_t *wq)
     570{
     571        int cnt;
     572
    290573        irq_spinlock_lock(&wq->lock, true);
    291 
    292         if (!list_empty(&wq->sleepers))
    293                 _wake_one(wq);
    294 
     574        cnt = wq->missed_wakeups;
    295575        irq_spinlock_unlock(&wq->lock, true);
    296 }
    297 
    298 /**
    299  * Wakes up one thread sleeping on this waitq.
    300  * If there are no threads waiting, saves the wakeup so that the next sleep
    301  * returns immediately. If a previous failure in sleep created a wakeup debt
    302  * (see SYNCH_FLAGS_FUTEX) this debt is annulled and no thread is woken up.
    303  */
    304 void waitq_wake_one(waitq_t *wq)
     576
     577        return cnt;
     578}
     579
     580/** Set the missed wakeups count.
     581 *
     582 * @param wq    Pointer to wait queue.
     583 * @param val   New value of the missed_wakeups count.
     584 */
     585void waitq_count_set(waitq_t *wq, int val)
    305586{
    306587        irq_spinlock_lock(&wq->lock, true);
    307 
    308         if (!wq->closed) {
    309                 if (wq->wakeup_balance < 0 || list_empty(&wq->sleepers))
    310                         wq->wakeup_balance++;
    311                 else
    312                         _wake_one(wq);
    313         }
    314 
     588        wq->missed_wakeups = val;
    315589        irq_spinlock_unlock(&wq->lock, true);
    316590}
    317591
    318 static void _wake_all(waitq_t *wq)
    319 {
    320         while (!list_empty(&wq->sleepers))
    321                 _wake_one(wq);
    322 }
    323 
    324 /**
    325  * Wakes up all threads currently waiting on this waitq
    326  * and makes all future sleeps return instantly.
    327  */
    328 void waitq_close(waitq_t *wq)
    329 {
    330         irq_spinlock_lock(&wq->lock, true);
    331         wq->wakeup_balance = 0;
    332         wq->closed = true;
    333         _wake_all(wq);
    334         irq_spinlock_unlock(&wq->lock, true);
    335 }
    336 
    337 /**
    338  * Wakes up all threads currently waiting on this waitq
    339  */
    340 void waitq_wake_all(waitq_t *wq)
    341 {
    342         irq_spinlock_lock(&wq->lock, true);
    343         wq->wakeup_balance = 0;
    344         _wake_all(wq);
    345         irq_spinlock_unlock(&wq->lock, true);
    346 }
    347 
    348592/** @}
    349593 */
Note: See TracChangeset for help on using the changeset viewer.