Changeset b07769b6 in mainline for include/mm/vm.h


Ignore:
Timestamp:
2005-08-19T13:12:32Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f4a61ef
Parents:
6a4177a
Message:

Switch over to per vm_t page tables. (breaks ia32 userspace)

Define dummy memcopy() for amd64 and ppc to satisfy compiler.

Get rid of problematic #include <arch/mm/page.h> in mm/page.h.

Indentation fixes and small changes here and there.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/mm/vm.h

    r6a4177a rb07769b6  
    7777};
    7878
    79 extern vm_t * vm_create(void);
     79extern vm_t * vm_create(pte_t *ptl0);
    8080extern void vm_destroy(vm_t *m);
    8181
     
    8383extern void vm_area_destroy(vm_area_t *a);
    8484
    85 extern void vm_area_map(vm_area_t *a);
    86 extern void vm_area_unmap(vm_area_t *a);
     85extern void vm_area_map(vm_area_t *a, vm_t *m);
     86extern void vm_area_unmap(vm_area_t *a, vm_t *m);
    8787
    8888extern void vm_install(vm_t *m);
Note: See TracChangeset for help on using the changeset viewer.