summaryrefslogtreecommitdiff
path: root/src/inc
diff options
context:
space:
mode:
authorMike McLaughlin <mikem@microsoft.com>2016-05-27 20:03:32 -0700
committerMike McLaughlin <mikem@microsoft.com>2016-05-27 20:03:32 -0700
commit5ac6af932fe2a3f4b285b6dcc79010caf807ea9d (patch)
tree1796105c114488dcb47993f33e4a114b0a7ef4ff /src/inc
parent7711017de7e9f5d42a0db7fd46f7072a64460913 (diff)
downloadcoreclr-5ac6af932fe2a3f4b285b6dcc79010caf807ea9d.tar.gz
coreclr-5ac6af932fe2a3f4b285b6dcc79010caf807ea9d.tar.bz2
coreclr-5ac6af932fe2a3f4b285b6dcc79010caf807ea9d.zip
Fix the named semaphore leak on OSX (and Linux) (#5269)
* Change the dbgshim launch handshake back. The debugger side now creates the name semaphores like before and the transport pipe existence determines that coreclr is ready. Changed when the transport pipes are created: synchronously on the main thread. Correctly set and check the HAVE_PROCFS_* defines. * Code review feedback.
Diffstat (limited to 'src/inc')
-rw-r--r--src/inc/clrconfigvalues.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/inc/clrconfigvalues.h b/src/inc/clrconfigvalues.h
index 98c5aa5fe0..701df31ccf 100644
--- a/src/inc/clrconfigvalues.h
+++ b/src/inc/clrconfigvalues.h
@@ -249,7 +249,6 @@ CONFIG_DWORD_INFO_DIRECT_ACCESS(INTERNAL_DbgTransportLog, W("DbgTransportLog"),
CONFIG_DWORD_INFO_DIRECT_ACCESS(INTERNAL_DbgTransportLogClass, W("DbgTransportLogClass"), "mask to control what is logged in DbgTransportLog")
RETAIL_CONFIG_STRING_INFO_EX(UNSUPPORTED_DbgTransportProxyAddress, W("DbgTransportProxyAddress"), "allows specifying the transport proxy address", CLRConfig::REGUTIL_default)
CONFIG_DWORD_INFO_EX(INTERNAL_DbgTrapOnSkip, W("DbgTrapOnSkip"), 0, "allows breaking when we skip a breakpoint", CLRConfig::REGUTIL_default)
-RETAIL_CONFIG_DWORD_INFO(UNSUPPORTED_DbgWaitForDebuggerAttach, W("DbgWaitForDebuggerAttach"), 0, "Makes CoreCLR wait for a managed debugger to attach on process start (1) or regular process start (0)")
CONFIG_DWORD_INFO_EX(INTERNAL_DbgWaitTimeout, W("DbgWaitTimeout"), 1, "specifies the timeout value for waits", CLRConfig::REGUTIL_default)
RETAIL_CONFIG_DWORD_INFO_EX(UNSUPPORTED_DbgWFDETimeout, W("DbgWFDETimeout"), 25, "specifies the timeout value for wait when waiting for a debug event", CLRConfig::REGUTIL_default)
CONFIG_DWORD_INFO_EX(INTERNAL_RaiseExceptionOnAssert, W("RaiseExceptionOnAssert"), 0, "Raise a first chance (if set to 1) or second chance (if set to 2) exception on asserts.", CLRConfig::REGUTIL_default)