Changeset 328e0d3 in mainline
- Timestamp:
- 2006-02-05T14:40:19Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9b9e385
- Parents:
- 444ec64
- Location:
- generic/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/mm/slab.c
r444ec64 r328e0d3 28 28 29 29 /* 30 * The SLAB allocator is closely modelled after Open solaris SLAB allocator30 * The SLAB allocator is closely modelled after OpenSolaris SLAB allocator 31 31 * http://www.usenix.org/events/usenix01/full_papers/bonwick/bonwick_html/ 32 32 * -
generic/src/proc/scheduler.c
r444ec64 r328e0d3 132 132 * until a hardware interrupt or an IPI comes. 133 133 * 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 138 142 cpu_sleep(); 139 143 goto loop;
Note:
See TracChangeset
for help on using the changeset viewer.