Ignore:
File:
1 edited

Legend:

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

    r0407636 r4b334fd6  
    3232.set noreorder
    3333
    34 #include <abi/asmtool.h>
    3534#include <libarch/fibril_context.h>
    3635
    37 FUNCTION_BEGIN(context_save)
     36.global context_save
     37.global context_restore
     38
     39context_save:
    3840        sw $s0, CONTEXT_OFFSET_S0($a0)
    3941        sw $s1, CONTEXT_OFFSET_S1($a0)
     
    9092        j $ra
    9193        li $v0, 1
    92 FUNCTION_END(context_save)
    9394
    94 FUNCTION_BEGIN(context_restore)
     95context_restore:
    9596        lw $s0, CONTEXT_OFFSET_S0($a0)
    9697        lw $s1, CONTEXT_OFFSET_S1($a0)
     
    150151        j $ra
    151152        xor $v0, $v0
    152 FUNCTION_END(context_restore)
Note: See TracChangeset for help on using the changeset viewer.