unwind documentation

Authors

Generated by builder

Contents -

  1. unwind types
  2. unwind constants
  3. unwind variables
  4. unwind functions

unwind types

_Unwind_Action

typedef int _Unwind_Action;
Description forthcoming.

_Unwind_Exception_Cleanup_Fn

typedef void(* _Unwind_Exception_Cleanup_Fn;
Description forthcoming.

_Unwind_Reason_Code

typedef enum ... _Unwind_Reason_Code;

Standard exception handling definitions which don't seem to be in a header.


uint64

typedef uint64_t uint64;

Typedef to allow prototypes from EH documentation to work unmodified


unwind constants

_UA_CLEANUP_PHASE

const _Unwind_Action _UA_CLEANUP_PHASE;
Description forthcoming.

_UA_FORCE_UNWIND

const _Unwind_Action _UA_FORCE_UNWIND;
Description forthcoming.

_UA_HANDLER_FRAME

const _Unwind_Action _UA_HANDLER_FRAME;
Description forthcoming.

_UA_SEARCH_PHASE

const _Unwind_Action _UA_SEARCH_PHASE;
Description forthcoming.

unwind variables

struct _Unwind_Context

struct _Unwind_Context struct _Unwind_Context;
Description forthcoming.

struct _Unwind_Exception

struct _Unwind_Exception struct _Unwind_Exception;
Description forthcoming.

unwind functions

_Unwind_GetIP

uintptr_t _Unwind_GetIP(struct _Unwind_Context* context);
Description forthcoming.

_Unwind_GetLanguageSpecificData

uintptr_t _Unwind_GetLanguageSpecificData(struct _Unwind_Context* context);
Description forthcoming.

_Unwind_GetRegionStart

uintptr_t _Unwind_GetRegionStart(struct _Unwind_Context* context);
Description forthcoming.

_Unwind_RaiseException

_Unwind_Reason_Code _Unwind_RaiseException(struct _Unwind_Exception* exception_object);
Description forthcoming.

_Unwind_Resume

void _Unwind_Resume(struct _Unwind_Exception* exception_object);
Description forthcoming.

_Unwind_SetIP

void _Unwind_SetIP(struct _Unwind_Context* context, uintptr_t );
Description forthcoming.