Changes in kernel/arch/sparc64/src/proc/sun4u/scheduler.c [6eef3c4:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/proc/sun4u/scheduler.c
r6eef3c4 r9d58539 51 51 void before_thread_runs_arch(void) 52 52 { 53 if ( THREAD->uspace) {53 if ((THREAD->flags & THREAD_FLAG_USPACE)) { 54 54 /* 55 55 * Write kernel stack address to %g6 of the alternate and … … 74 74 void after_thread_ran_arch(void) 75 75 { 76 if ( THREAD->uspace) {77 /* sample the state of the userspace window buffer */ 76 if ((THREAD->flags & THREAD_FLAG_USPACE)) { 77 /* sample the state of the userspace window buffer */ 78 78 THREAD->arch.uspace_window_buffer = (uint8_t *) read_from_ag_g7(); 79 79 }
Note:
See TracChangeset
for help on using the changeset viewer.