aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/microbenchmarks/bm_closure.cc
Commit message (Collapse)AuthorAge
* remove unnecessary blank lineGravatar Noah Eisen2018-05-24
|
* Fix asan closure bugGravatar Noah Eisen2018-05-24
|
* Support microbenchmarks internallyGravatar ncteisen2018-04-25
|
* Split lib/support into lib/gpr and lib/gpr++.Gravatar Mark D. Roth2018-01-18
|
* Revert "Revert "All instances of exec_ctx being passed around in src/core ↵Gravatar Yash Tibrewal2017-12-06
| | | | removed""
* Revert "All instances of exec_ctx being passed around in src/core removed"Gravatar Yash Tibrewal2017-12-06
|
* Remove _ prefixed variable namesGravatar Yash Tibrewal2017-11-29
|
* Merge masterGravatar Yash Tibrewal2017-11-16
|\
* | Move ExecCtx to grpc_core namespace. Make exec_ctx a private static in ↵Gravatar Yash Tibrewal2017-11-14
| | | | | | | | ExecCtx and some minor changes
* | Address some PR commentsGravatar Yash Tibrewal2017-11-14
| |
| * clang-format after nullptr changesGravatar Craig Tiller2017-11-10
| |
| * Enable clang-tidy as a sanity check, fix up all known failuresGravatar Craig Tiller2017-11-10
| |
* | Removing more exec_ctx instancesGravatar Yash Tibrewal2017-11-09
| |
* | Merge with masterGravatar Yash Tibrewal2017-11-09
|\|
| * Merge masterGravatar Yash Tibrewal2017-11-06
| |\
| | * Update clang-format to 5.0Gravatar Craig Tiller2017-11-03
| | |
| * | Remove unnecessary extern CsGravatar Yash Tibrewal2017-10-25
| |/
* / Removing instances of exec_ctx being passed around in functions inGravatar Yash Tibrewal2017-10-18
|/ | | | | | | | | | | src/core. exec_ctx is now a thread_local pointer of type ExecCtx instead of grpc_exec_ctx which is initialized whenever ExecCtx is instantiated. ExecCtx also keeps track of the previous exec_ctx so that nesting of exec_ctx is allowed. This means that there is only one exec_ctx being used at any time. Also, grpc_exec_ctx_finish is called in the destructor of the object, and the previous exec_ctx is restored to avoid breaking current functionality. The code still explicitly calls grpc_exec_ctx_finish because removing all such instances causes the code to break.
* Add rich closure debug modeGravatar ncteisen2017-06-08
|
* Merge github.com:grpc/grpc into ALL-the-thingsGravatar Craig Tiller2017-06-08
|\
| * auto-fix most of licensesGravatar Jan Tattermusch2017-06-08
| |
* | Fix C++ buildGravatar Craig Tiller2017-05-17
|/
* Merge github.com:grpc/grpc into cpp_bazelnessGravatar Craig Tiller2017-03-09
|\
| * BugfixesGravatar Craig Tiller2017-03-03
| |
| * Move helpers to a common place, use them everywhereGravatar Craig Tiller2017-03-03
| |
| * Add a spinlock type.Gravatar Craig Tiller2017-02-27
| | | | | | | | | | | | | | | | | | | | Useful for situations where we need to repeatedly trylock, not useful for cases where we need to lock (due to spinning). Add a variant of sync_test to test it (with the same tests we run for gpr_mu). Add a benchmark to bm_closure to demonstrate single threaded performance.
* | Merge github.com:grpc/grpc into cpp_bazelnessGravatar Craig Tiller2017-02-24
|\|
| * Separate CAS/ADD RMWsGravatar Craig Tiller2017-02-21
| |
| * Add counters for rmw atomic operations to microbenchmarksGravatar Craig Tiller2017-02-21
| |
* | Complete microbenchmarksGravatar Craig Tiller2017-02-17
|/
* Fix stack corruptionGravatar Craig Tiller2017-02-13
|
* Add a comparison benchmark of acquiring a mutexGravatar Craig Tiller2017-02-13
|
* Add benchmarks of closures, combiners, exec_ctx primitivesGravatar Craig Tiller2017-02-13