Overview
Comment: | OFException: Fix missing #ifdef / #endif |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
4d16add5aec43f4cfa6590d9a6cd09b7 |
User & Date: | js on 2015-03-30 21:32:57 |
Other Links: | manifest | tags |
Context
2015-03-30
| ||
21:33 | Add OF_NO_RETURN_FUNC check-in: ffb39d1df6 user: js tags: trunk | |
21:32 | OFException: Fix missing #ifdef / #endif check-in: 4d16add5ae user: js tags: trunk | |
2015-03-22
| ||
11:42 | Abstract int vs SOCKET as of_socket_t check-in: 099e939079 user: js tags: trunk | |
Changes
Modified src/exceptions/OFException.m from [23bfa51fc4] to [35e676e981].
︙ | |||
73 74 75 76 77 78 79 80 81 82 83 84 85 86 | 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | + | extern _Unwind_Reason_Code _Unwind_Backtrace( _Unwind_Reason_Code(*)(struct _Unwind_Context*, void*), void*); # if defined(__arm__) || defined(__ARM__) extern int _Unwind_VRS_Get(struct _Unwind_Context*, int, uint32_t, int, void*); # else extern uintptr_t _Unwind_GetIP(struct _Unwind_Context*); # endif #endif #if !defined(HAVE_STRERROR_R) && defined(OF_HAVE_THREADS) static of_mutex_t mutex; static void __attribute__((__constructor__)) init(void) { |
︙ | |||
201 202 203 204 205 206 207 208 209 210 211 212 213 214 | 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | + | } # endif #endif return ret; } #ifdef HAVE_DWARF_EXCEPTIONS static _Unwind_Reason_Code backtrace_callback(struct _Unwind_Context *ctx, void *data) { struct backtrace_ctx *bt = data; if (bt->i < OF_BACKTRACE_SIZE) { # if defined(__arm__) || defined(__ARM__) |
︙ |