Changes in libcfa/src/exception.c [ecfd758:c960331]
- File:
-
- 1 edited
-
libcfa/src/exception.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/exception.c
recfd758 rc960331 10 10 // Created On : Mon Jun 26 15:13:00 2017 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : Wed Feb 24 13:40:00 202113 // Update Count : 3 612 // Last Modified On : Tue Oct 27 16:27:00 2020 13 // Update Count : 35 14 14 // 15 15 … … 26 26 #include "concurrency/invoke.h" 27 27 #include "stdhdr/assert.h" 28 #include "virtual.h"29 28 30 29 #if defined( __ARM_ARCH ) … … 47 46 const _Unwind_Exception_Class __cfaehm_exception_class = 0x4c50575500414643; 48 47 49 // Base Exception type id: 50 struct __cfa__parent_vtable __cfatid_exception_t = { 51 NULL, 48 // Base exception vtable is abstract, you should not have base exceptions. 49 struct __cfaehm_base_exception_t_vtable 50 ___cfaehm_base_exception_t_vtable_instance = { 51 .parent = NULL, 52 .size = 0, 53 .copy = NULL, 54 .free = NULL, 55 .msg = NULL 52 56 }; 53 57
Note:
See TracChangeset
for help on using the changeset viewer.