aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/backoff/backoff_test.cc
Commit message (Collapse)AuthorAge
* change tests to use the new class instead of grpc_test_initGravatar yang-g2018-11-30
|
* Run clang fmtGravatar Noah Eisen2018-02-09
|
* Autofix c casts to c++ castsGravatar Noah Eisen2018-02-09
|
* Privatize useful.h and avl.hGravatar Vijay Pai2018-02-02
|
* Combine BackOff Begin() and Step() methods.Gravatar Mark D. Roth2018-01-18
|
* Merge branch 'master' of github.com:grpc/grpc into backoff_cppGravatar David Garcia Quintas2017-12-13
|\
| * 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
| |
* | PR CommentsGravatar David Garcia Quintas2017-12-05
| |
* | Cleaned up API. Backoff now returns a single value: the time of the next retryGravatar David Garcia Quintas2017-12-04
| |
| * Remove _ prefixed variable namesGravatar Yash Tibrewal2017-11-29
| |
* | Converted backoff_test to use gunitGravatar David Garcia Quintas2017-11-29
| |
| * Fix tests to call grpc_init and grpc_shutdown before using exec_ctxGravatar Yash Tibrewal2017-11-28
| |
* | C++-ize backoffGravatar David Garcia Quintas2017-11-22
| |
| * 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
| |
| * Merge with masterGravatar Yash Tibrewal2017-11-09
| |\ | |/ |/|
* | Merge masterGravatar Yash Tibrewal2017-11-06
| |
* | rename all test core files to cc and a lot of C++ style conversionsGravatar 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.