Changeset 858a51f in mainline
- Timestamp:
- 2018-07-05T21:41:17Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9dfdb03
- Parents:
- ef9d0988
- git-author:
- Jaroslav Jindrak <dzejrou@…> (2017-10-11 20:16:31)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:17)
- Location:
- uspace/lib/cpp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/Makefile
ref9d0988 r858a51f 42 42 src/new.cpp \ 43 43 src/typeinfo.cpp \ 44 src/internal/runtime.cpp 44 src/internal/runtime.cpp \ 45 src/internal/unwind.cpp 45 46 46 47 include $(USPACE_PREFIX)/Makefile.common -
uspace/lib/cpp/src/internal/unwind.cpp
ref9d0988 r858a51f 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 29 #include <cstdint> 28 30 29 31 namespace __cxxabiv1 … … 59 61 /* Opaque structure. */ 60 62 struct _Unwind_Context; 63 64 using _Unwind_Action = int; 65 namespace 66 { 67 const _Unwind_Action _UA_SEARCH_PHASE = 1; 68 const _Unwind_Action _UA_CLEANUP_PHASE = 2; 69 const _Unwind_Action _UA_HANDLER_FRAME = 4; 70 const _Unwind_Action _UA_FORCE_HANDLER = 8; 71 } 61 72 62 73 /**
Note:
See TracChangeset
for help on using the changeset viewer.