Changeset fcfac420 in mainline for arch/ia32/src/mm/page.c


Ignore:
Timestamp:
2005-12-10T01:02:31Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6095342
Parents:
973be64e
Message:

Changed ia32 & amd64 to use exc_register instead of trap_register.

Fixed dependency list building. I hope you all have 'makedepend' installed,
if you don't it's time to install it, as CC -M builds the dependency
list without directory names..and it just does not work.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/mm/page.c

    r973be64e rfcfac420  
    4040#include <memstr.h>
    4141#include <print.h>
     42#include <interrupt.h>
    4243
    4344static __address bootstrap_dba;
     
    6061                        page_mapping_insert(PA2KA(cur), cur, PAGE_CACHEABLE, KA2PA(dba));
    6162
    62                 trap_register(14, page_fault);
     63                exc_register(14, "page_fault", page_fault);
    6364                write_cr3(KA2PA(dba));
    6465        }
Note: See TracChangeset for help on using the changeset viewer.