Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/arch/arm32/src/fibril.S

    r73b3ecd r31e6aa7  
    2727#
    2828
    29 #include <abi/asmtool.h>
    30 
    3129.text
    3230
    33 FUNCTION_BEGIN(context_save)
     31.global context_save
     32.global context_restore
     33
     34context_save:
    3435        stmia r0!, {sp, lr}
    3536        stmia r0!, {r4-r11}
     
    3839        mov r0, #1
    3940        mov pc, lr
    40 FUNCTION_END(context_save)
    4141
    42 FUNCTION_BEGIN(context_restore)
     42context_restore:
    4343        ldmia r0!, {sp, lr}
    4444        ldmia r0!, {r4-r11}
     
    4747        mov r0, #0
    4848        mov pc, lr
    49 FUNCTION_END(context_restore)
    5049
Note: See TracChangeset for help on using the changeset viewer.