Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Mosier <smosier@microsoft.com>2015-11-05 01:51:04 +0300
committerScott Mosier <smosier@microsoft.com>2015-11-20 03:06:03 +0300
commitc03d823a11f54e734e340813e6cd1e543ca448ef (patch)
tree9253c3230e07568377a5744ffd8c0932774a3989 /src/Native/Runtime/startup.cpp
parent896131b2af7bc8f3f01e56e391e9c186726f5c6f (diff)
Changes required to integrate code back into ProjectN tree
Diffstat (limited to 'src/Native/Runtime/startup.cpp')
-rw-r--r--src/Native/Runtime/startup.cpp18
1 files changed, 6 insertions, 12 deletions
diff --git a/src/Native/Runtime/startup.cpp b/src/Native/Runtime/startup.cpp
index ae04a4be6..17322b1d3 100644
--- a/src/Native/Runtime/startup.cpp
+++ b/src/Native/Runtime/startup.cpp
@@ -2,15 +2,10 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
-#include "rhcommon.h"
-#ifdef DACCESS_COMPILE
-#include "gcrhenv.h"
-#endif // DACCESS_COMPILE
-
-#ifndef DACCESS_COMPILE
+#include "common.h"
#include "CommonTypes.h"
-#include "daccess.h"
#include "CommonMacros.h"
+#include "daccess.h"
#include "PalRedhawkCommon.h"
#include "PalRedhawk.h"
#include "assert.h"
@@ -31,7 +26,6 @@
#include "RhConfig.h"
#include "stressLog.h"
#include "RestrictedCallouts.h"
-#endif // !DACCESS_COMPILE
#ifndef DACCESS_COMPILE
@@ -188,7 +182,7 @@ void AppendInt64(char * pBuffer, UInt32* pLen, UInt64 value)
}
#endif // PROFILE_STARTUP
-bool UninitDLL(HANDLE hModDLL)
+bool UninitDLL(HANDLE /*hModDLL*/)
{
#ifdef PROFILE_STARTUP
char buffer[1024];
@@ -215,7 +209,7 @@ bool UninitDLL(HANDLE hModDLL)
return true;
}
-void DllThreadAttach(HANDLE hPalInstance)
+void DllThreadAttach(HANDLE /*hPalInstance*/)
{
// We do not call ThreadStore::AttachThread from here because the loader lock is held. Instead, the
// threads themselves will do this on their first reverse pinvoke.
@@ -237,7 +231,7 @@ void DllThreadDetach()
void __stdcall FiberDetach(void* lpFlsData)
{
// Note: loader lock is *not* held here!
-
+ UNREFERENCED_PARAMETER(lpFlsData);
ASSERT(lpFlsData == PalFlsGetValue(_fls_index));
ThreadStore::DetachCurrentThreadIfHomeFiber();
@@ -319,7 +313,7 @@ HANDLE RtuCreateRuntimeInstance(HANDLE hPalInstance)
// @TODO: Eventually we'll probably have a hosting API and explicit shutdown request. When that happens we'll
// something more sophisticated here since we won't be able to rely on the OS cleaning up after us.
//
-COOP_PINVOKE_HELPER(void, RhpShutdownHelper, (UInt32 uExitCode))
+COOP_PINVOKE_HELPER(void, RhpShutdownHelper, (UInt32 /*uExitCode*/))
{
// If the classlib has requested it perform a last pass of the finalizer thread.
RedhawkGCInterface::ShutdownFinalization();