summaryrefslogtreecommitdiff
path: root/src/ToolBox/superpmi/superpmi-shared/runtimedetails.h
diff options
context:
space:
mode:
authorJiyoung Yun <jy910.yun@samsung.com>2017-04-27 16:54:50 +0900
committerJiyoung Yun <jy910.yun@samsung.com>2017-04-27 16:54:50 +0900
commit5b975f8233e8c8d17b215372f89ca713b45d6a0b (patch)
tree0267bcc331458a01f4c26fafd28110a72273beb3 /src/ToolBox/superpmi/superpmi-shared/runtimedetails.h
parenta56e30c8d33048216567753d9d3fefc2152af8ac (diff)
downloadcoreclr-5b975f8233e8c8d17b215372f89ca713b45d6a0b.tar.gz
coreclr-5b975f8233e8c8d17b215372f89ca713b45d6a0b.tar.bz2
coreclr-5b975f8233e8c8d17b215372f89ca713b45d6a0b.zip
Imported Upstream version 2.0.0.11599upstream/2.0.0.11599
Diffstat (limited to 'src/ToolBox/superpmi/superpmi-shared/runtimedetails.h')
-rw-r--r--src/ToolBox/superpmi/superpmi-shared/runtimedetails.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ToolBox/superpmi/superpmi-shared/runtimedetails.h b/src/ToolBox/superpmi/superpmi-shared/runtimedetails.h
index 4677299e3a..019c2d1841 100644
--- a/src/ToolBox/superpmi/superpmi-shared/runtimedetails.h
+++ b/src/ToolBox/superpmi/superpmi-shared/runtimedetails.h
@@ -9,7 +9,7 @@
#ifndef _RuntimeDetails
#define _RuntimeDetails
-//Our little collection of enough of the CLR data to get the JIT up and working...
+// Our little collection of enough of the CLR data to get the JIT up and working...
#define FEATURE_CLRSQM
#if !defined(_TARGET_AMD64_) && !defined(_TARGET_X86_) && !defined(_TARGET_ARM64_) && !defined(_TARGET_ARM_)
@@ -20,13 +20,13 @@
#endif
#endif // _TARGET_* not previously defined
-#define __EXCEPTION_RECORD_CLR //trick out clrntexception.h to not include another exception record....
+#define __EXCEPTION_RECORD_CLR // trick out clrntexception.h to not include another exception record....
#include <mscoree.h>
#include <corjit.h>
#include <utilcode.h>
-///Turn back on direct access to a few OS level things...
+/// Turn back on direct access to a few OS level things...
#undef HeapCreate
#undef HeapAlloc
#undef HeapFree
@@ -35,9 +35,9 @@
#undef TlsGetValue
#undef TlsSetValue
-//Jit Exports
-typedef ICorJitCompiler* (__stdcall *PgetJit)();
-typedef void (__stdcall *PjitStartup)(ICorJitHost* host);
-typedef void (__stdcall *PsxsJitStartup)(CoreClrCallbacks const & cccallbacks);
+// Jit Exports
+typedef ICorJitCompiler*(__stdcall* PgetJit)();
+typedef void(__stdcall* PjitStartup)(ICorJitHost* host);
+typedef void(__stdcall* PsxsJitStartup)(CoreClrCallbacks const& cccallbacks);
#endif