Changes in libcfa/src/exception.c [c960331:915aa11]
- File:
-
- 1 edited
-
libcfa/src/exception.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/exception.c
rc960331 r915aa11 9 9 // Author : Andrew Beach 10 10 // Created On : Mon Jun 26 15:13:00 2017 11 // Last Modified By : Andrew Beach12 // Last Modified On : Tue Oct 27 16:27:00202013 // Update Count : 3 511 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Aug 29 15:52:22 2020 13 // Update Count : 34 14 14 // 15 15 … … 17 17 #include <stddef.h> // for size_t 18 18 19 #include <unwind.h> // for struct _Unwind_Exception {...};20 21 19 #include "exception.h" 22 20 23 21 #include <stdlib.h> 24 22 #include <stdio.h> 23 #include <unwind.h> 25 24 #include <bits/debug.hfa> 26 25 #include "concurrency/invoke.h" … … 114 113 115 114 // MEMORY MANAGEMENT ========================================================= 115 116 struct __cfaehm_node { 117 struct _Unwind_Exception unwind_exception; 118 struct __cfaehm_node * next; 119 int handler_index; 120 }; 116 121 117 122 #define NODE_TO_EXCEPT(node) ((exception_t *)(1 + (node)))
Note:
See TracChangeset
for help on using the changeset viewer.