Skip to content

Commit

Permalink
Fix debugger initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
tommcdon committed Jan 31, 2022
1 parent ce15dc7 commit 9a1f7db
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/coreclr/inc/vptr_list.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ VPTR_CLASS(ReflectionModule)
VPTR_CLASS(AppDomain)
VPTR_CLASS(SystemDomain)

VPTR_CLASS(DomainAssembly)
VPTR_CLASS(PrecodeStubManager)
VPTR_CLASS(StubLinkStubManager)
VPTR_CLASS(ThePreStubManager)
Expand All @@ -38,6 +39,7 @@ VPTR_CLASS(DelegateInvokeStubManager)
VPTR_CLASS(TailCallStubManager)
#endif
VPTR_CLASS(CallCountingStubManager)
VPTR_CLASS(PEAssembly)

VPTR_CLASS(PEImageLayout)
VPTR_CLASS(ConvertedImageLayout)
Expand Down
4 changes: 3 additions & 1 deletion src/coreclr/vm/domainassembly.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,16 @@ enum NotificationStatus

class DomainAssembly final
{
VPTR_BASE_CONCRETE_VTABLE_CLASS(DomainAssembly)

public:

// ------------------------------------------------------------
// Public API
// ------------------------------------------------------------

#ifndef DACCESS_COMPILE
~DomainAssembly();
virtual ~DomainAssembly();
DomainAssembly() {LIMITED_METHOD_CONTRACT;};
#endif

Expand Down
2 changes: 2 additions & 0 deletions src/coreclr/vm/peassembly.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ typedef VPTR(PEAssembly) PTR_PEAssembly;

class PEAssembly final
{
VPTR_BASE_CONCRETE_VTABLE_CLASS(PEAssembly)

public:

// ------------------------------------------------------------
Expand Down

0 comments on commit 9a1f7db

Please sign in to comment.