Renamed resched() to scheduler_reschedule().

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2580 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-01-27 04:01:28 +00:00
parent 4b2d22c03e
commit 2760fd9495
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ i386_handle_trap(struct iframe frame)
if (ret == B_INVOKE_SCHEDULER) { if (ret == B_INVOKE_SCHEDULER) {
int state = disable_interrupts(); int state = disable_interrupts();
GRAB_THREAD_LOCK(); GRAB_THREAD_LOCK();
resched(); scheduler_reschedule();
RELEASE_THREAD_LOCK(); RELEASE_THREAD_LOCK();
restore_interrupts(state); restore_interrupts(state);
} }