Changeset a8f9a82 in mainline
- Timestamp:
- 2005-08-21T22:38:57Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6e787c4
- Parents:
- 3526da33
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/smp/smp.c
r3526da33 ra8f9a82 148 148 */ 149 149 waitq_sleep(&ap_completion_wq); 150 cpu_priority_high();151 150 } 152 151 else { -
src/main/kinit.c
r3526da33 ra8f9a82 78 78 thread_ready(t); 79 79 waitq_sleep(&kmp_completion_wq); 80 cpu_priority_high();81 80 } 82 81 else panic("thread_create/kmp"); -
src/proc/scheduler.c
r3526da33 ra8f9a82 243 243 return; 244 244 } 245 246 /* 247 * CPU priority of preempted thread is recorded here 248 * to facilitate scheduler() invocations from 249 * cpu_priority_high()'ed code (e.g. waitq_sleep_timeout()). 250 */ 245 251 THREAD->saved_context.pri = pri; 246 252 }
Note:
See TracChangeset
for help on using the changeset viewer.