Changeset 80ec409 for libcfa/src/exception.c
- Timestamp:
- Aug 12, 2020, 4:20:03 PM (3 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 0240cd69
- Parents:
- 980fb4e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/exception.c
r980fb4e r80ec409 28 28 #include <unwind.h> 29 29 #include <bits/debug.hfa> 30 #include "concurrency/invoke.h" 30 31 #include "stdhdr/assert.h" 31 32 … … 59 60 60 61 // Temperary global exception context. Does not work with concurency. 61 struct exception_context_t { 62 struct __cfaehm_try_resume_node * top_resume; 63 64 exception_t * current_exception; 65 } static shared_stack = {NULL, NULL}; 62 static struct exception_context_t shared_stack = {NULL, NULL}; 66 63 67 64 // Get the current exception context.
Note: See TracChangeset
for help on using the changeset viewer.