Ignore:
File:
1 edited

Legend:

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

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