summaryrefslogtreecommitdiff
path: root/src/debug
diff options
context:
space:
mode:
authorBen Pye <ben@curlybracket.co.uk>2015-09-16 23:38:18 +0000
committerBen Pye <ben@curlybracket.co.uk>2015-09-16 23:38:18 +0000
commitc893bf0699c81d7ea9ca9d37543eb5339d64d116 (patch)
treebbe9a07f5d1ad60866636f4024c08d1cf775d5e6 /src/debug
parent059b6592a9bc1390a982f34a4a693a1159d7bd97 (diff)
downloadcoreclr-c893bf0699c81d7ea9ca9d37543eb5339d64d116.tar.gz
coreclr-c893bf0699c81d7ea9ca9d37543eb5339d64d116.tar.bz2
coreclr-c893bf0699c81d7ea9ca9d37543eb5339d64d116.zip
Fix ARM build regression
Diffstat (limited to 'src/debug')
-rw-r--r--src/debug/inc/dbgipcevents.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/inc/dbgipcevents.h b/src/debug/inc/dbgipcevents.h
index b110a23977..c41e355475 100644
--- a/src/debug/inc/dbgipcevents.h
+++ b/src/debug/inc/dbgipcevents.h
@@ -181,7 +181,7 @@ struct MSLAYOUT DebuggerIPCRuntimeOffsets
// aren't any embedded buffers in the DebuggerIPCControlBlock).
#if defined(DBG_TARGET_X86) || defined(DBG_TARGET_ARM)
-#define CorDBIPC_BUFFER_SIZE (1500) // hand tuned to ensure that ipc block in IPCHeader.h fits in 1 page.
+#define CorDBIPC_BUFFER_SIZE (2088) // hand tuned to ensure that ipc block in IPCHeader.h fits in 1 page.
#else // !_TARGET_X86_ && !_TARGET_ARM_
// This is the size of a DebuggerIPCEvent. You will hit an assert in Cordb::Initialize() (DI\process.cpp)
// if this is not defined correctly. AMD64 actually has a page size of 0x1000, not 0x2000.