You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by je...@apache.org on 2020/04/20 21:38:48 UTC

[thrift] branch master updated (9e864d5 -> dd7e117)

This is an automated email from the ASF dual-hosted git repository.

jensg pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git.


    from 9e864d5  Add UnsetHeader to go library
     new 35a3942  Update libthrift.vcxproj and libthrift.vcxproj.filters: remove xxxThreadFactory.h file which has been removed Client: cpp Patch: zeshuai007 <51...@qq.com>
     new dd7e117  Removed a duplicate line + Fixed typo in the comments of lib/cpp/src/thrift/concurrency/Thread.h Client: cpp Patch: gaganso <ga...@gmail.com>

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 lib/cpp/libthrift.vcxproj                      |  5 -----
 lib/cpp/libthrift.vcxproj.filters              | 15 ---------------
 lib/cpp/src/thrift/concurrency/Thread.h        |  2 +-
 lib/cpp/src/thrift/server/TNonblockingServer.h |  1 -
 4 files changed, 1 insertion(+), 22 deletions(-)


[thrift] 01/02: Update libthrift.vcxproj and libthrift.vcxproj.filters: remove xxxThreadFactory.h file which has been removed Client: cpp Patch: zeshuai007 <51382517@qq.com>

Posted by je...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jensg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git

commit 35a3942e7078bc55cd21890b12d206d9bf0514d3
Author: zeshuai007 <51...@qq.com>
AuthorDate: Fri Apr 17 11:14:01 2020 +0800

    Update libthrift.vcxproj and libthrift.vcxproj.filters: remove xxxThreadFactory.h file which has been removed
    Client: cpp
    Patch: zeshuai007 <51...@qq.com>
    
    This closes #2100
---
 lib/cpp/libthrift.vcxproj         |  5 -----
 lib/cpp/libthrift.vcxproj.filters | 15 ---------------
 2 files changed, 20 deletions(-)

diff --git a/lib/cpp/libthrift.vcxproj b/lib/cpp/libthrift.vcxproj
index d1097ec..52af26a 100644
--- a/lib/cpp/libthrift.vcxproj
+++ b/lib/cpp/libthrift.vcxproj
@@ -39,8 +39,6 @@
     <ClCompile Include="src\thrift\async\TConcurrentClientSyncInfo.cpp"/>
     <ClCompile Include="src\thrift\concurrency\BoostMonitor.cpp" />
     <ClCompile Include="src\thrift\concurrency\BoostMutex.cpp" />
-    <ClCompile Include="src\thrift\concurrency\BoostThreadFactory.cpp" />
-    <ClCompile Include="src\thrift\concurrency\StdThreadFactory.cpp" />
     <ClCompile Include="src\thrift\concurrency\ThreadManager.cpp"/>
     <ClCompile Include="src\thrift\concurrency\TimerManager.cpp"/>
     <ClCompile Include="src\thrift\concurrency\Util.cpp"/>
@@ -81,10 +79,7 @@
   <ItemGroup>
     <ClInclude Include="src\thrift\async\TAsyncChannel.h" />
     <ClInclude Include="src\thrift\async\TConcurrentClientSyncInfo.h" />
-    <ClInclude Include="src\thrift\concurrency\BoostThreadFactory.h" />
-    <ClInclude Include="src\thrift\concurrency\StdThreadFactory.h" />
     <ClInclude Include="src\thrift\concurrency\Exception.h" />
-    <ClInclude Include="src\thrift\concurrency\PlatformThreadFactory.h" />
     <ClInclude Include="src\thrift\processor\PeekProcessor.h" />
     <ClInclude Include="src\thrift\processor\TMultiplexedProcessor.h" />
     <ClInclude Include="src\thrift\protocol\TBinaryProtocol.h" />
diff --git a/lib/cpp/libthrift.vcxproj.filters b/lib/cpp/libthrift.vcxproj.filters
index 5f64f78..0e9a9fd 100644
--- a/lib/cpp/libthrift.vcxproj.filters
+++ b/lib/cpp/libthrift.vcxproj.filters
@@ -96,12 +96,6 @@
     <ClCompile Include="src\thrift\concurrency\BoostMutex.cpp">
       <Filter>concurrency</Filter>
     </ClCompile>
-    <ClCompile Include="src\thrift\concurrency\BoostThreadFactory.cpp">
-      <Filter>concurrency</Filter>
-    </ClCompile>
-    <ClCompile Include="src\thrift\concurrency\StdThreadFactory.cpp">
-      <Filter>concurrency</Filter>
-    </ClCompile>
     <ClCompile Include="src\thrift\windows\WinFcntl.cpp">
       <Filter>windows</Filter>
     </ClCompile>
@@ -227,15 +221,6 @@
     <ClInclude Include="src\thrift\windows\force_inc.h">
       <Filter>windows</Filter>
     </ClInclude>
-    <ClInclude Include="src\thrift\concurrency\BoostThreadFactory.h">
-      <Filter>concurrency</Filter>
-    </ClInclude>
-    <ClInclude Include="src\thrift\concurrency\StdThreadFactory.h">
-      <Filter>concurrency</Filter>
-    </ClInclude>
-    <ClInclude Include="src\thrift\concurrency\PlatformThreadFactory.h">
-      <Filter>concurrency</Filter>
-    </ClInclude>
     <ClInclude Include="src\thrift\windows\WinFcntl.h">
       <Filter>windows</Filter>
     </ClInclude>


[thrift] 02/02: Removed a duplicate line + Fixed typo in the comments of lib/cpp/src/thrift/concurrency/Thread.h Client: cpp Patch: gaganso

Posted by je...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jensg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git

commit dd7e11798ba524f7ae6204b68f073ee696deb595
Author: gaganso <ga...@gmail.com>
AuthorDate: Mon Apr 20 03:20:05 2020 +0200

    Removed a duplicate line + Fixed typo in the comments of lib/cpp/src/thrift/concurrency/Thread.h
    Client: cpp
    Patch: gaganso <ga...@gmail.com>
    
    This closes #2104
---
 lib/cpp/src/thrift/concurrency/Thread.h        | 2 +-
 lib/cpp/src/thrift/server/TNonblockingServer.h | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/cpp/src/thrift/concurrency/Thread.h b/lib/cpp/src/thrift/concurrency/Thread.h
index e803a82..ed43754 100644
--- a/lib/cpp/src/thrift/concurrency/Thread.h
+++ b/lib/cpp/src/thrift/concurrency/Thread.h
@@ -63,7 +63,7 @@ private:
  * and ready to start execution.  More or less analogous to java.lang.Thread
  * (minus all the thread group, priority, mode and other baggage, since that
  * is difficult to abstract across platforms and is left for platform-specific
- * ThreadFactory implemtations to deal with
+ * ThreadFactory implementations to deal with
  *
  * @see apache::thrift::concurrency::ThreadFactory)
  */
diff --git a/lib/cpp/src/thrift/server/TNonblockingServer.h b/lib/cpp/src/thrift/server/TNonblockingServer.h
index 82bc375..e44c7ee 100644
--- a/lib/cpp/src/thrift/server/TNonblockingServer.h
+++ b/lib/cpp/src/thrift/server/TNonblockingServer.h
@@ -54,7 +54,6 @@ using apache::thrift::protocol::TProtocol;
 using apache::thrift::concurrency::Runnable;
 using apache::thrift::concurrency::ThreadManager;
 using apache::thrift::concurrency::ThreadFactory;
-using apache::thrift::concurrency::ThreadFactory;
 using apache::thrift::concurrency::Thread;
 using apache::thrift::concurrency::Mutex;
 using apache::thrift::concurrency::Guard;