aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/surface/init.cc
Commit message (Collapse)AuthorAge
* Split lib/support into lib/gpr and lib/gpr++.Gravatar Mark D. Roth2018-01-18
|
* virtual destructor in exec_ctx, remove unneeded flush in grpc_shutdown and ↵Gravatar Yash Tibrewal2017-12-07
| | | | remove grpc_exec_ctx from .pxi files in python
* 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
|
* Revert ordering of tracers and timers in shutdownGravatar Yash Tibrewal2017-12-05
|
* Merge branch 'master' into execctxGravatar Yash Tibrewal2017-11-30
|\
* | Remove _ prefixed variable namesGravatar Yash Tibrewal2017-11-29
| |
* | Remove TLS_NO_SUPPORT and always use GPR_TLS. Reorder statements in ↵Gravatar Yash Tibrewal2017-11-28
| | | | | | | | grpc_init and grpc_shutdown. Add grpc_init and grpc_shutdown in failing test/cpp tests
* | Fix tests to call grpc_init and grpc_shutdown before using exec_ctxGravatar Yash Tibrewal2017-11-28
| |
* | Fix grpc_init by removing exec_ctx usage before initGravatar Yash Tibrewal2017-11-27
| |
* | A few src/core fixes due to missing exec_ctx_finishGravatar Yash Tibrewal2017-11-21
| |
* | Merge masterGravatar Yash Tibrewal2017-11-21
|\ \
| | * Merge branch 'v1.7.x' of https://github.com/grpc/grpcGravatar Nicolas "Pixel" Noble2017-11-21
| |/
* | Merge masterGravatar Yash Tibrewal2017-11-16
|\ \
* | | Maintain exec_ctx flags initialization as it was beforeGravatar Yash Tibrewal2017-11-14
| | |
* | | 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 branch 'master' of https://github.com/grpc/grpc into tracing++Gravatar Noah Eisen2017-11-13
| | |\ | | |/ | |/|
| | * Make debug flags DebugOnlyGravatar ncteisen2017-11-10
| | |
| | * Merge branch 'master' of https://github.com/grpc/grpc into tracing++Gravatar ncteisen2017-11-10
| | |\ | | | | | | | | | | | | Lot's of manual work to make this merge work
| * | | s/NULL/nullptrGravatar Craig Tiller2017-11-10
| | |/ | |/|
* | | Merge with masterGravatar Yash Tibrewal2017-11-09
|\| |
| * | Update clang-format to 5.0Gravatar Craig Tiller2017-11-03
| | |
| * | Adds gRPC Experimental CQ DoThenAsyncNext lambda APIGravatar Ken Payson2017-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.
| * clang-formatGravatar Craig Tiller2017-10-16
| |
| * C++ize tracingGravatar Craig Tiller2017-10-16
|/
* Changes for C to C++. Adding extern C to header files for compatibility.Gravatar Yash Tibrewal2017-10-02
Also converting to .cc