Changes in uspace/lib/c/arch/riscv64/src/fibril.c [1433ecda:b4f1171] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/riscv64/src/fibril.c
r1433ecda rb4f1171 33 33 #include <stdbool.h> 34 34 35 int __ setjmp(context_t *ctx)35 int __context_save(__context_t *ctx) 36 36 { 37 37 return 0; 38 38 } 39 39 40 void __ longjmp(context_t *ctx, int ret)40 void __context_restore(__context_t *ctx, int ret) 41 41 { 42 42 while (true)
Note:
See TracChangeset
for help on using the changeset viewer.