Skip to content

Commit

Permalink
Rename filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
am11 committed Oct 15, 2024
1 parent 98d846c commit 669a148
Show file tree
Hide file tree
Showing 18 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion src/coreclr/hosts/corerun/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ set(CLR_CMAKE_KEEP_NATIVE_SYMBOLS TRUE)
add_executable_clr(corerun
corerun.cpp
dotenv.cpp
${CLR_SRC_NATIVE_DIR}/minipal/is_native_debugger_present.c
${CLR_SRC_NATIVE_DIR}/minipal/debugger.c
native.rc
)

Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/hosts/corerun/corerun.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ namespace pal
#ifdef TARGET_WINDOWS
#define CDECL __cdecl
#include <Windows.h>
#include <minipal/is_native_debugger_present.h>
#include <minipal/debugger.h>

#define DLL_EXPORT __declspec(dllexport)
#define MAIN __cdecl wmain
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/jit/error.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <corjit.h> // for CORJIT_INTERNALERROR
#include <safemath.h> // For FitsIn, used by SafeCvt methods.

#include <minipal/is_native_debugger_present.h>
#include <minipal/debugger.h>

#define FATAL_JIT_EXCEPTION 0x02345678
class Compiler;
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/minipal/Unix/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
set(SOURCES
doublemapping.cpp
dn-u16.cpp
${CLR_SRC_NATIVE_DIR}/minipal/is_native_debugger_present.c
${CLR_SRC_NATIVE_DIR}/minipal/debugger.c
${CLR_SRC_NATIVE_DIR}/minipal/time.c
)

Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/minipal/Windows/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
set(SOURCES
doublemapping.cpp
dn-u16.cpp
${CLR_SRC_NATIVE_DIR}/minipal/is_native_debugger_present.c
${CLR_SRC_NATIVE_DIR}/minipal/debugger.c
${CLR_SRC_NATIVE_DIR}/minipal/utf8.c
${CLR_SRC_NATIVE_DIR}/minipal/time.c
)
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/nativeaot/Runtime/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ set(COMMON_RUNTIME_SOURCES
${GC_DIR}/softwarewritewatch.cpp

${CLR_SRC_NATIVE_DIR}/minipal/cpufeatures.c
${CLR_SRC_NATIVE_DIR}/minipal/is_native_debugger_present.c
${CLR_SRC_NATIVE_DIR}/minipal/debugger.c
${CLR_SRC_NATIVE_DIR}/minipal/time.c
)

Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/nativeaot/Runtime/MiscHelpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#include "yieldprocessornormalized.h"
#include "RhConfig.h"
#include <minipal/cpuid.h>
#include <minipal/is_native_debugger_present.h>
#include <minipal/debugger.h>

FCIMPL0(void, RhDebugBreak)
{
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/nativeaot/Runtime/rhassert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "PalRedhawk.h"
#include "rhassert.h"

#include <minipal/is_native_debugger_present.h>
#include <minipal/debugger.h>

#ifdef _DEBUG

Expand Down
4 changes: 2 additions & 2 deletions src/coreclr/pal/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,8 @@ if(CLR_CMAKE_TARGET_LINUX)
add_library(tracepointprovider OBJECT misc/tracepointprovider.cpp)
endif(CLR_CMAKE_TARGET_LINUX)

add_library(is_native_debugger_present STATIC ${CLR_SRC_NATIVE_DIR}/minipal/is_native_debugger_present.c)
target_link_libraries(coreclrpal PRIVATE is_native_debugger_present)
add_library(minipal_debugger STATIC ${CLR_SRC_NATIVE_DIR}/minipal/debugger.c)
target_link_libraries(coreclrpal PRIVATE minipal_debugger)

if(CLR_CMAKE_TARGET_OSX)
find_library(COREFOUNDATION CoreFoundation)
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/pal/src/exception/machexception.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ SET_DEFAULT_DEBUG_CHANNEL(EXCEPT); // some headers have code with asserts, so do
#include "pal/map.hpp"
#include "pal/environ.h"

#include <minipal/is_native_debugger_present.h>
#include <minipal/debugger.h>
#include <minipal/utils.h>

#include "machmessage.h"
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/tools/superpmi/superpmi-shared/spmiutil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include "logging.h"
#include "spmiutil.h"

#include <minipal/is_native_debugger_present.h>
#include <minipal/debugger.h>

static bool breakOnDebugBreakorAV = false;

Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/utilcode/check.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include <ex.h>
#include <contract.h>

#include <minipal/is_native_debugger_present.h>
#include <minipal/debugger.h>

#ifdef _DEBUG
size_t CHECK::s_cLeakedBytes = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/utilcode/debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include "ex.h"
#include "corexcep.h"

#include <minipal/is_native_debugger_present.h>
#include <minipal/debugger.h>

#ifdef _DEBUG
#define LOGGING
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/vm/eeconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class MethodDesc;

#include "shash.h"
#include "corhost.h"
#include <minipal/is_native_debugger_present.h>
#include <minipal/debugger.h>

#ifdef _DEBUG
class TypeNamesList
Expand Down
2 changes: 1 addition & 1 deletion src/mono/mono/mini/calls.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include <config.h>
#include <mono/utils/mono-compiler.h>
#include <minipal/is_native_debugger_present.h>
#include <minipal/debugger.h>

#ifndef DISABLE_JIT

Expand Down
2 changes: 1 addition & 1 deletion src/mono/mono/utils/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ set(utils_common_sources
wasm-module-reader.c
mono-bitutils.h
mono-bitutils.c
${CLR_SRC_NATIVE_DIR}/minipal/is_native_debugger_present.c
${CLR_SRC_NATIVE_DIR}/minipal/debugger.c
)

if(MONO_CROSS_COMPILE)
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 669a148

Please sign in to comment.