Changeset a5c78a18 in mainline for uspace/lib/c/arch/abs32le/src/fibril.c
- Timestamp:
- 2019-02-03T14:35:44Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b4f1171
- Parents:
- 67ca359
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/abs32le/src/fibril.c
r67ca359 ra5c78a18 33 33 #include <stdbool.h> 34 34 35 int __setjmp( context_t *ctx)35 int __setjmp(__context_t *ctx) 36 36 { 37 37 return 0; 38 38 } 39 39 40 void __longjmp( context_t *ctx, int val)40 void __longjmp(__context_t *ctx, int val) 41 41 { 42 42 while (true)
Note:
See TracChangeset
for help on using the changeset viewer.