Changeset 615e83d in mainline for uspace/lib/c/arch/abs32le/src/fibril.c
- Timestamp:
- 2018-03-08T18:25:31Z (7 years ago)
- Children:
- 55f068c
- Parents:
- e0a4686
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-08 17:43:06)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-08 18:25:31)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/abs32le/src/fibril.c
re0a4686 r615e83d 30 30 */ 31 31 32 #include < fibril.h>32 #include <setjmp.h> 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 val) 41 41 { 42 42 while (true);
Note:
See TracChangeset
for help on using the changeset viewer.