You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by li...@apache.org on 2020/02/14 10:01:27 UTC

[incubator-doris] branch master updated (09a4d3e -> 9ee1704)

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

lichaoyong pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git.


    from 09a4d3e  [gutil] import scoped_refptr smart pointer from KUDU (#2899)
     add 9ee1704  [util] Import util tools from KUDU (#2905)

No new revisions were added by this update.

Summary of changes:
 be/src/agent/task_worker_pool.cpp                  |  38 +-
 be/src/agent/task_worker_pool.h                    |   4 +-
 be/src/olap/data_dir.h                             |   2 +-
 be/src/olap/lru_cache.h                            |   2 +-
 be/src/olap/tablet_meta.h                          |   1 +
 be/src/olap/utils.cpp                              | 256 +------------
 be/src/olap/utils.h                                | 168 ---------
 be/src/runtime/bufferpool/buffer_pool_internal.h   |   7 -
 be/src/runtime/dpp_sink.cpp                        |   4 +-
 be/src/util/CMakeLists.txt                         |   3 +
 be/src/util/condition_variable.cpp                 |  86 +++++
 be/src/util/condition_variable.h                   | 140 ++++---
 be/src/util/count_down_latch.hpp                   |  95 -----
 be/src/util/countdown_latch.h                      | 135 +++++++
 be/src/util/file_utils.cpp                         |  10 +-
 be/src/util/mem_info.cpp                           |   2 +-
 be/src/util/monotime.cpp                           | 315 ++++++++++++++++
 be/src/util/monotime.h                             | 406 ++++++++++++++++++++
 be/src/util/mutex.cpp                              | 187 ++++++++++
 be/src/util/mutex.h                                | 185 +++++++++
 be/src/util/scoped_cleanup.h                       |  70 ++++
 be/test/olap/skiplist_test.cpp                     |   9 +-
 be/test/util/CMakeLists.txt                        |   3 +-
 be/test/util/count_down_latch_test.cpp             | 102 -----
 be/test/util/countdown_latch_test.cpp              |  79 ++++
 be/test/util/monotime_test.cpp                     | 412 +++++++++++++++++++++
 .../util/{md5_test.cpp => scoped_cleanup_test.cpp} |  45 ++-
 run-ut.sh                                          |   3 +-
 28 files changed, 2047 insertions(+), 722 deletions(-)
 create mode 100644 be/src/util/condition_variable.cpp
 delete mode 100644 be/src/util/count_down_latch.hpp
 create mode 100644 be/src/util/countdown_latch.h
 create mode 100644 be/src/util/monotime.cpp
 create mode 100644 be/src/util/monotime.h
 create mode 100644 be/src/util/mutex.cpp
 create mode 100644 be/src/util/mutex.h
 create mode 100644 be/src/util/scoped_cleanup.h
 delete mode 100644 be/test/util/count_down_latch_test.cpp
 create mode 100644 be/test/util/countdown_latch_test.cpp
 create mode 100644 be/test/util/monotime_test.cpp
 copy be/test/util/{md5_test.cpp => scoped_cleanup_test.cpp} (59%)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org