Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/mm/backend_elf.c

    r01029fc r9d58539  
    5858static void elf_destroy(as_area_t *);
    5959
    60 static bool elf_is_resizable(as_area_t *);
    61 static bool elf_is_shareable(as_area_t *);
    62 
    6360static int elf_page_fault(as_area_t *, uintptr_t, pf_access_t);
    6461static void elf_frame_free(as_area_t *, uintptr_t, uintptr_t);
     
    6966        .share = elf_share,
    7067        .destroy = elf_destroy,
    71 
    72         .is_resizable = elf_is_resizable,
    73         .is_shareable = elf_is_shareable,
    7468
    7569        .page_fault = elf_page_fault,
     
    219213}
    220214
    221 bool elf_is_resizable(as_area_t *area)
    222 {
    223         return true;
    224 }
    225 
    226 bool elf_is_shareable(as_area_t *area)
    227 {
    228         return true;
    229 }
    230 
    231 
    232215/** Service a page fault in the ELF backend address space area.
    233216 *
Note: See TracChangeset for help on using the changeset viewer.