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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Henry <ludovic@xamarin.com>2016-09-14 00:40:58 +0300
committerGitHub <noreply@github.com>2016-09-14 00:40:58 +0300
commit7421216052564d8d5db2bea297bc95b0a512e4ad (patch)
treebcad9d71c9c0ef44394041ebfc61fbff7008401b /msvc/libmonoruntime.vcxproj
parent334494de14d68fd732a86b6c075cf0769537d3ed (diff)
[io-layer] Extract Mutex, Semaphore and Event (#3553)
* [metadata] Move mutex managed support to seperate file * [mutex] Extract CreateMutex * [mutex] Extract ReleaseMutex * [mutex] Extract OpenMutex * [mutex] Extract wapi_mutex_abandon * [mutex] Extract MonoW32HandleOps for mutex and named mutex * [io-layer] Extract wapi_search_handle_namespace * [metadata] Move semaphore managed support to seperate file * [semaphore] Move _WapiHandle_sem and _WapiHandle_namedsem to semaphores.h * [semaphore] Extract CreateSemaphore * [semaphore] Extract ReleaseSemaphore * [semaphore] Extract OpenSemaphore * [semaphore] Extract MonoW32HandleOps * [metadata] Move event managed support to seperate file * [event] Extract CreateEvent * [event] Remove dead code PulseEvent * [event] Extract SetEvent * [event] Extract ResetEvent * [event] Extract OpenHandle * [event] Extract MonoW32HandleOps * [w32handle] Extract namespace locking * [io-layer] Inline only use of wapi_shm_sem_lock/wapi_shm_sem_unlock
Diffstat (limited to 'msvc/libmonoruntime.vcxproj')
-rw-r--r--msvc/libmonoruntime.vcxproj3
1 files changed, 3 insertions, 0 deletions
diff --git a/msvc/libmonoruntime.vcxproj b/msvc/libmonoruntime.vcxproj
index 41f6439154b..78517bc7c3a 100644
--- a/msvc/libmonoruntime.vcxproj
+++ b/msvc/libmonoruntime.vcxproj
@@ -26,6 +26,9 @@
<ClCompile Include="..\mono\metadata\class.c" />
<ClCompile Include="..\mono\metadata\cominterop.c" />
<ClCompile Include="..\mono\metadata\console-win32.c" />
+ <ClCompile Include="..\mono\metadata\w32mutex-win32.c" />
+ <ClCompile Include="..\mono\metadata\w32semaphore-win32.c" />
+ <ClCompile Include="..\mono\metadata\w32event-win32.c" />
<ClCompile Include="..\mono\metadata\coree.c" />
<ClCompile Include="..\mono\metadata\custom-attrs.c" />
<ClCompile Include="..\mono\metadata\debug-helpers.c" />