Changeset 91d5ad6 in mainline for arch/ppc32/src/proc
- Timestamp:
- 2006-03-15T00:55:05Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 286e03d
- Parents:
- d1e414c
- File:
-
- 1 edited
-
arch/ppc32/src/proc/scheduler.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc32/src/proc/scheduler.c
rd1e414c r91d5ad6 27 27 */ 28 28 29 #include <arch/mm/page.h> 29 30 #include <proc/scheduler.h> 31 #include <proc/thread.h> 32 #include <arch.h> 33 34 __address supervisor_sp; 35 __address supervisor_sp_physical; 30 36 31 37 void before_thread_runs_arch(void) 32 38 { 39 supervisor_sp = (__address) &THREAD->kstack[THREAD_STACK_SIZE - SP_DELTA]; 40 supervisor_sp_physical = KA2PA(supervisor_sp_physical); 33 41 } 34 42
Note:
See TracChangeset
for help on using the changeset viewer.
