Changeset a35a3d8 in mainline for uspace/lib/c/arch/riscv64/src/fibril.c
- Timestamp:
- 2018-03-12T17:13:46Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b127e4af
- Parents:
- f3d47c97
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-12 17:13:46)
- git-committer:
- GitHub <noreply@…> (2018-03-12 17:13:46)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/riscv64/src/fibril.c
rf3d47c97 ra35a3d8 33 33 #include <stdbool.h> 34 34 35 int context_save(context_t *ctx)35 int __setjmp(context_t *ctx) 36 36 { 37 return 1;37 return 0; 38 38 } 39 39 40 void context_restore(context_t *ctx)40 void __longjmp(context_t *ctx, int ret) 41 41 { 42 42 while (true);
Note:
See TracChangeset
for help on using the changeset viewer.