diff options
author | Jan Vorlicek <janvorli@microsoft.com> | 2015-10-14 03:01:25 +0200 |
---|---|---|
committer | Jan Vorlicek <janvorli@microsoft.com> | 2015-12-24 10:09:30 +0100 |
commit | 54990d90fcffbae79d72cfb2e37bb4cac4e0660c (patch) | |
tree | 299c88fa672bbdb2b4ce609df52945cf7d29326d /src/corefx | |
parent | 38e554e5dcb8f6de9c014c5e1839b564a64937f6 (diff) | |
download | coreclr-54990d90fcffbae79d72cfb2e37bb4cac4e0660c.tar.gz coreclr-54990d90fcffbae79d72cfb2e37bb4cac4e0660c.tar.bz2 coreclr-54990d90fcffbae79d72cfb2e37bb4cac4e0660c.zip |
GC OS interface refactoring
This change replaces all calls of OS specific functions in the GC by a call to
a platform agnostic interface. Critical sections were abstracted too.
The logging file access was changed to use CRT functions instead of Windows specific APIs.
A "size" member was added to the card_table_info so that we can pass the right
size to the VirtualRelease method when destroying the card table.
I have also fixed a bug in the gc_heap::make_card_table error path where when VirtualCommit
failed, it called VirtualRelease with size that was not the reserved size, but
the committed size.
Other related changes
- All interlocked operations moved to Interlocked class as static methods
- Removed unused function prototypes
- Shuffled stuff in the root CMakeLists.txt to enable building the GC sample using the
settings inherited from the root CMakeLists.txt and to clean up some things that have
rotted over time, like the FEATURE_xxx macros not being in one alphabetically ordered
block
- Fixed the VOLATILE_MEMORY_BARRIER macro in the gcenv.base.h
- Replaced uint32_t thread id by EEThreadId
- Removed thread handles storage (g_gc_thread) from the GC. The thread handle is closed right after the thread is launched. That allowed me to get rid of the GCThreadHandle
- Renamed the methods of the EEThreadId to be easier to understand
- Moved the gcenv.windows.cpp and gcenv.unix.cpp to the sample folder
Diffstat (limited to 'src/corefx')
-rw-r--r-- | src/corefx/System.Globalization.Native/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/corefx/System.Globalization.Native/CMakeLists.txt b/src/corefx/System.Globalization.Native/CMakeLists.txt index 08d35a0053..71b5c039d2 100644 --- a/src/corefx/System.Globalization.Native/CMakeLists.txt +++ b/src/corefx/System.Globalization.Native/CMakeLists.txt @@ -1,5 +1,6 @@ project(System.Globalization.Native) +include(CheckCXXSourceCompiles) set(CMAKE_INCLUDE_CURRENT_DIR ON) |