summaryrefslogtreecommitdiff
path: root/src/debug
diff options
context:
space:
mode:
authorAndrew Au <andrewau@microsoft.com>2018-08-27 17:40:13 -0700
committerAndrew Au <cshung@gmail.com>2018-11-06 18:34:47 -0800
commit5e324dad533a8cfe774d39c2bed2ebdc616547ac (patch)
treef7a3684754aa90a2eabfac5c958957f17a83649f /src/debug
parent7e94efe87f48b990e77e87f6f643cdf1ab51f951 (diff)
downloadcoreclr-5e324dad533a8cfe774d39c2bed2ebdc616547ac.tar.gz
coreclr-5e324dad533a8cfe774d39c2bed2ebdc616547ac.tar.bz2
coreclr-5e324dad533a8cfe774d39c2bed2ebdc616547ac.zip
Linux fix
Diffstat (limited to 'src/debug')
-rw-r--r--src/debug/shared/dbgtransportsession.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/debug/shared/dbgtransportsession.cpp b/src/debug/shared/dbgtransportsession.cpp
index 95fdf25457..81ef7675d1 100644
--- a/src/debug/shared/dbgtransportsession.cpp
+++ b/src/debug/shared/dbgtransportsession.cpp
@@ -2202,6 +2202,7 @@ DWORD DbgTransportSession::GetEventSize(DebuggerIPCEvent *pEvent)
case DB_IPCE_GET_NGEN_COMPILER_FLAGS:
case DB_IPCE_DETACH_FROM_PROCESS:
case DB_IPCE_CONTROL_C_EVENT_RESULT:
+ case DB_IPCE_DATA_BREAKPOINT:
cbAdditionalSize = 0;
break;
@@ -2493,6 +2494,14 @@ DWORD DbgTransportSession::GetEventSize(DebuggerIPCEvent *pEvent)
cbAdditionalSize = sizeof(pEvent->CustomNotification);
break;
+ case DB_IPCE_GET_CONTAINER:
+ cbAdditionalSize = sizeof(pEvent->GetContainer);
+ break;
+
+ case DB_IPCE_GET_CONTAINER_RESULT:
+ cbAdditionalSize = sizeof(pEvent->GetContainerResult);
+ break;
+
default:
printf("Unknown debugger event type: 0x%x\n", (pEvent->type & DB_IPCE_TYPE_MASK));
_ASSERTE(!"Unknown debugger event type");