diff options
author | David Garcia Quintas <dgq@google.com> | 2015-10-07 16:12:35 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2015-10-07 16:12:35 -0700 |
commit | 4bc3463108a7675b24d6f826acf6b2f472a615f5 (patch) | |
tree | 9aeea070813981549fe3681186d03657d3f7bf33 /vsprojects/vcxproj/grpc_unsecure | |
parent | 1485683fcd725169a9b8d9cd3f1dbf1706da6045 (diff) |
Introducing grpc_executor, for all your threading needs
Diffstat (limited to 'vsprojects/vcxproj/grpc_unsecure')
-rw-r--r-- | vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj | 3 | ||||
-rw-r--r-- | vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj.filters | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj b/vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj index b527179f9f..4526c2e332 100644 --- a/vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj +++ b/vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj @@ -284,6 +284,7 @@ <ClInclude Include="..\..\..\src\core\iomgr\endpoint.h" /> <ClInclude Include="..\..\..\src\core\iomgr\endpoint_pair.h" /> <ClInclude Include="..\..\..\src\core\iomgr\exec_ctx.h" /> + <ClInclude Include="..\..\..\src\core\iomgr\executor.h" /> <ClInclude Include="..\..\..\src\core\iomgr\fd_posix.h" /> <ClInclude Include="..\..\..\src\core\iomgr\iocp_windows.h" /> <ClInclude Include="..\..\..\src\core\iomgr\iomgr.h" /> @@ -442,6 +443,8 @@ </ClCompile> <ClCompile Include="..\..\..\src\core\iomgr\exec_ctx.c"> </ClCompile> + <ClCompile Include="..\..\..\src\core\iomgr\executor.c"> + </ClCompile> <ClCompile Include="..\..\..\src\core\iomgr\fd_posix.c"> </ClCompile> <ClCompile Include="..\..\..\src\core\iomgr\iocp_windows.c"> diff --git a/vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj.filters b/vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj.filters index 7be3c9ec93..8ba784e933 100644 --- a/vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj.filters +++ b/vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj.filters @@ -124,6 +124,9 @@ <ClCompile Include="..\..\..\src\core\iomgr\exec_ctx.c"> <Filter>src\core\iomgr</Filter> </ClCompile> + <ClCompile Include="..\..\..\src\core\iomgr\executor.c"> + <Filter>src\core\iomgr</Filter> + </ClCompile> <ClCompile Include="..\..\..\src\core\iomgr\fd_posix.c"> <Filter>src\core\iomgr</Filter> </ClCompile> @@ -524,6 +527,9 @@ <ClInclude Include="..\..\..\src\core\iomgr\exec_ctx.h"> <Filter>src\core\iomgr</Filter> </ClInclude> + <ClInclude Include="..\..\..\src\core\iomgr\executor.h"> + <Filter>src\core\iomgr</Filter> + </ClInclude> <ClInclude Include="..\..\..\src\core\iomgr\fd_posix.h"> <Filter>src\core\iomgr</Filter> </ClInclude> |