Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Move RUNTIME_FUNCTION__BeginAddress into clrnt.h #8632

Merged
merged 1 commit into from
Dec 14, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/inc/clrnt.h
Original file line number Diff line number Diff line change
Expand Up @@ -835,13 +835,18 @@ RtlVirtualUnwind_Unsafe(
// X86
//

#if defined(_TARGET_X86_) && !defined(FEATURE_PAL)
#ifdef _TARGET_X86_
#ifndef FEATURE_PAL

typedef struct _DISPATCHER_CONTEXT {
_EXCEPTION_REGISTRATION_RECORD* RegistrationPointer;
} DISPATCHER_CONTEXT, *PDISPATCHER_CONTEXT;

#endif // _TARGET_X86_ && !FEATURE_PAL
#endif // !FEATURE_PAL

#define RUNTIME_FUNCTION__BeginAddress(prf) (prf)->BeginAddress

#endif // _TARGET_X86_

#ifdef _TARGET_ARM_
#include "daccess.h"
Expand Down
1 change: 0 additions & 1 deletion src/inc/corcompile.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ typedef struct _RUNTIME_FUNCTION {

typedef DPTR(RUNTIME_FUNCTION) PTR_RUNTIME_FUNCTION;

#define RUNTIME_FUNCTION__BeginAddress(prf) (prf)->BeginAddress

// Chained unwind info. Used for cold methods.
#define RUNTIME_FUNCTION_INDIRECT 0x80000000
Expand Down