Changeset 0ca6faa in mainline for src/proc/scheduler.c


Ignore:
Timestamp:
2005-05-08T22:32:29Z (20 years ago)
Author:
Jakub Vana <jakub.vana@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2265edf
Parents:
c4a5207f
Message:

Move fpu_context switching functions from context.s to fpu_context.c on all platforms.
Add fpu_context.h.

Make before_thread_runs() arch-independent and create arch dependent version before_thread_runs_arch().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/proc/scheduler.c

    rc4a5207f r0ca6faa  
    5555volatile int nrdy;
    5656
     57void before_thread_runs(void)
     58{
     59        before_thread_runs_arch();
     60        fpu_context_restore();
     61}
     62
     63
    5764void scheduler_init(void)
    5865{
Note: See TracChangeset for help on using the changeset viewer.