Ignore:
File:
1 edited

Legend:

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

    ra35a3d8 r3e6a98c5  
    3030 */
    3131
    32 #include <setjmp.h>
     32#include <fibril.h>
    3333#include <stdbool.h>
    3434
    35 int __setjmp(context_t *ctx)
     35int context_save(context_t *ctx)
    3636{
    37         return 0;
     37        return 1;
    3838}
    3939
    40 void __longjmp(context_t *ctx, int val)
     40void context_restore(context_t *ctx)
    4141{
    4242        while (true);
Note: See TracChangeset for help on using the changeset viewer.