Subversion Repositories HelenOS-historic

Rev

Rev 1122 | Rev 1222 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1122 Rev 1187
Line 134... Line 134...
134
              (__address) kernel_uarg->uspace_entry);
134
              (__address) kernel_uarg->uspace_entry);
135
    while (1)
135
    while (1)
136
        ;
136
        ;
137
}
137
}
138
 
138
 
-
 
139
/** Perform mips32 specific tasks needed before the new task is run. */
-
 
140
void before_task_runs_arch(void)
-
 
141
{
-
 
142
}
-
 
143
 
-
 
144
/** Perform mips32 specific tasks needed before the new thread is scheduled. */
139
void before_thread_runs_arch(void)
145
void before_thread_runs_arch(void)
140
{
146
{
141
    supervisor_sp = (__address) &THREAD->kstack[THREAD_STACK_SIZE-SP_DELTA];
147
    supervisor_sp = (__address) &THREAD->kstack[THREAD_STACK_SIZE-SP_DELTA];
142
}
148
}
143
 
149