Changeset 328e0d3 in mainline


Ignore:
Timestamp:
2006-02-05T14:40:19Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9b9e385
Parents:
444ec64
Message:

Comments clarification.

Location:
generic/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • generic/src/mm/slab.c

    r444ec64 r328e0d3  
    2828
    2929/*
    30  * The SLAB allocator is closely modelled after Opensolaris SLAB allocator
     30 * The SLAB allocator is closely modelled after OpenSolaris SLAB allocator
    3131 * http://www.usenix.org/events/usenix01/full_papers/bonwick/bonwick_html/
    3232 *
  • generic/src/proc/scheduler.c

    r444ec64 r328e0d3  
    132132                 * until a hardware interrupt or an IPI comes.
    133133                 * This improves energy saving and hyperthreading.
    134                  *
    135                  * - we might get an interrupt here that makes some thread runnable,
    136                  *   in such a case we must wait for the next quantum to come
    137                  */
     134                 */
     135
     136                /*
     137                 * An interrupt might occur right now and wake up a thread.
     138                 * In such case, the CPU will continue to go to sleep
     139                 * even though there is a runnable thread.
     140                 */
     141
    138142                 cpu_sleep();
    139143                 goto loop;
Note: See TracChangeset for help on using the changeset viewer.