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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreclr/tools/Common/JitInterface/ThunkGenerator/Program.cs')
-rw-r--r--src/coreclr/tools/Common/JitInterface/ThunkGenerator/Program.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/coreclr/tools/Common/JitInterface/ThunkGenerator/Program.cs b/src/coreclr/tools/Common/JitInterface/ThunkGenerator/Program.cs
index 5cd8cb6e66c..b0d12f06cdc 100644
--- a/src/coreclr/tools/Common/JitInterface/ThunkGenerator/Program.cs
+++ b/src/coreclr/tools/Common/JitInterface/ThunkGenerator/Program.cs
@@ -279,14 +279,14 @@ using System.Runtime.InteropServices;
namespace Internal.JitInterface
{
- unsafe partial class CorInfoImpl
+ internal unsafe partial class CorInfoImpl
{
");
foreach (FunctionDecl decl in functionData)
{
tw.WriteLine(" [UnmanagedCallersOnly]");
- tw.Write($" static {decl.ReturnType.UnmanagedTypeName} _{decl.FunctionName}(IntPtr thisHandle, IntPtr* ppException");
+ tw.Write($" private static {decl.ReturnType.UnmanagedTypeName} _{decl.FunctionName}(IntPtr thisHandle, IntPtr* ppException");
foreach (Parameter param in decl.Parameters)
{
tw.Write($", {param.Type.UnmanagedTypeName} {param.Name}");
@@ -344,7 +344,7 @@ namespace Internal.JitInterface
int total = functionData.Count();
tw.WriteLine(@"
- static IntPtr GetUnmanagedCallbacks()
+ private static IntPtr GetUnmanagedCallbacks()
{
void** callbacks = (void**)Marshal.AllocCoTaskMem(sizeof(IntPtr) * " + total + @");
");