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.filters
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.filters')
-rw-r--r--msvc/libmonoruntime.vcxproj.filters9
1 files changed, 9 insertions, 0 deletions
diff --git a/msvc/libmonoruntime.vcxproj.filters b/msvc/libmonoruntime.vcxproj.filters
index 13f50fb2be4..ba4d25f1ba9 100644
--- a/msvc/libmonoruntime.vcxproj.filters
+++ b/msvc/libmonoruntime.vcxproj.filters
@@ -16,6 +16,15 @@
<ClCompile Include="..\mono\metadata\console-win32.c">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="..\mono\metadata\w32mutex-win32.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\mono\metadata\w32semaphore-win32.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\mono\metadata\w32event-win32.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
<ClCompile Include="..\mono\metadata\coree.c">
<Filter>Source Files</Filter>
</ClCompile>