aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib
Commit message (Collapse)AuthorAge
* Python post-fork handler: exit if grpc shutdown failsGravatar Eric Gribkoff2018-08-22
|
* Support gRPC Python client-side fork with epoll1Gravatar Eric Gribkoff2018-08-22
| | | | | | | | | | | | | | | | | A process may fork after invoking grpc_init() and use gRPC in the child if and only if the child process first destroys all gRPC resources inherited from the parent process and invokes grpc_shutdown(). Subsequent to this, the child will be able to re-initialize and use gRPC. After fork, the parent process will be able to continue to use existing gRPC resources such as channels and calls without interference from the child process. To facilitate gRPC Python applications meeting the above constraints, gRPC Python will automatically destroy and shutdown all gRPC Core resources in the child's post-fork handler, including cancelling in-flight calls (see detailed design below). From the client's perspective, the child process is now free to create new channels and use gRPC.
* Merge pull request #16170 from hcaseyal/timer_testGravatar hcaseyal2018-08-21
|\ | | | | Create timer unit tests for long running services and clarify behavior for infinite deadline timers
| * Add timer tests for long running servicesGravatar Hope Casey-Allen2018-08-21
| |
* | size_t shouldn't have the value -1; switch to intGravatar Vijay Pai2018-08-21
| |
* | Merge pull request #15926 from cartr/platform_solaris_aixGravatar Vijay Pai2018-08-20
|\ \ | | | | | | Make gRPC buildable with AIX and Solaris (no official support)
* \ \ Merge pull request #16373 from markdroth/mu_guard_cleanupGravatar Mark D. Roth2018-08-17
|\ \ \ | | | | | | | | Move C++ mu_guard class out of C-core public headers and fix style.
| * | | Move C++ mu_guard class out of C-core public headers and fix style.Gravatar Mark D. Roth2018-08-16
| | | |
* | | | Revert "Add more filter priority levels"Gravatar Yang Gao2018-08-16
| | | |
* | | | Match parameter name in definition to declarationGravatar Vijay Pai2018-08-14
| | | |
* | | | Merge pull request #16298 from vjpai/custom_pollerGravatar Vijay Pai2018-08-14
|\ \ \ \ | | | | | | | | | | Infrastructure for registering custom polling engines
* \ \ \ \ Merge pull request #16302 from vjpai/callback_cqGravatar Vijay Pai2018-08-14
|\ \ \ \ \ | | | | | | | | | | | | EXPERIMENTAL: Infrastructure for callback-based core CQ
| * | | | | Fix abstract base class definitionGravatar Vijay Pai2018-08-14
| | | | | |
| * | | | | Can't count on shutdown_cb nullptr if version is 1Gravatar Vijay Pai2018-08-14
| | | | | |
| * | | | | Address reviewer commentsGravatar Vijay Pai2018-08-14
| | | | | |
| | * | | | Add detailed comment for g_factoriesGravatar Vijay Pai2018-08-13
| | | | | |
| * | | | | Merge branch 'master' into callback_cqGravatar Vijay Pai2018-08-13
| |\ \ \ \ \
* | \ \ \ \ \ Merge branch 'master' into rq-threads-2Gravatar Sree Kuchibhotla2018-08-13
|\ \ \ \ \ \ \ | | |/ / / / / | |/| | | | |
| * | | | | | Merge pull request #16261 from muxi/dynamic-cfstream-initGravatar Muxi Yan2018-08-13
| |\ \ \ \ \ \ | | |_|_|/ / / | |/| | | | | Use environment variable to enable CFStream
| * | | | | | clang_formatGravatar Muxi Yan2018-08-10
| | | | | | |
| * | | | | | Add newline to end of headerGravatar Muxi Yan2018-08-10
| | | | | | |
| | | * | | | Experimental infrastructure for callback-based CQGravatar Vijay Pai2018-08-10
| | | | | | |
| * | | | | | Merge pull request #16083 from tdbhacks/system-root-clean-historyGravatar Jiangtao Li2018-08-09
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Added system roots feature to load roots from OS trust store
| * \ \ \ \ \ \ Merge pull request #16288 from yashykt/combinernotifyGravatar Yash Tibrewal2018-08-09
| |\ \ \ \ \ \ \ | | |_|_|/ / / / | |/| | | | | | Explictly Flush exec_ctx after resetting call_combiner_set_notify_on_…
| | | | | * | | Infrastructure for adding custom polling enginesGravatar Vijay Pai2018-08-09
| | |_|_|/ / / | |/| | | | |
* | | | | | | Merge branch 'master' into rq-threads-2Gravatar Sree Kuchibhotla2018-08-09
|\| | | | | |
| | | * | | | Added system roots feature to load roots from OS trust storeGravatar tdbhacks2018-08-09
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Added a flag-guarded feature that allows gRPC to load TLS/SSL roots from the OS trust store. This is the Linux-specific implementation of such feature.
| * | | | | Enable c-ares queries on WindowsGravatar Alex Polcyn2018-08-08
| | | | | |
| | * | | | Explictly Flush exec_ctx after resetting call_combiner_set_notify_on_cancel ↵Gravatar Yash Tibrewal2018-08-08
| |/ / / / | | | | | | | | | | | | | | | to avoid the need to take refs on the stack for cancellation closures on exec_ctx
| | * | | clang-formatGravatar Muxi Yan2018-08-07
| | | | |
| * | | | Merge pull request #16225 from markdroth/reset_connection_backoffGravatar Mark D. Roth2018-08-07
| |\ \ \ \ | | | | | | | | | | | | Reset connection backoff
| * \ \ \ \ Merge pull request #16214 from yang-g/order_order_pleaseGravatar Yang Gao2018-08-06
| |\ \ \ \ \ | | | | | | | | | | | | | | Add more filter priority levels
| | | | * | | Enable CFStream with environment variableGravatar Muxi Yan2018-08-06
| | |_|/ / / | |/| | | |
| | | * | | Add experimental API for resetting connection backoff.Gravatar Mark D. Roth2018-08-06
| | | | | |
* | | | | | change thd_count to thread_countGravatar Sree Kuchibhotla2018-08-06
| | | | | |
* | | | | | Merge branch 'master' into rq-threads-2Gravatar Sree Kuchibhotla2018-08-06
|\| | | | |
| | * | | | commentsGravatar yang-g2018-08-02
| | | | | |
| | * | | | Review commentsGravatar yang-g2018-08-01
| | | | | |
| | * | | | SanityGravatar yang-g2018-08-01
| | | | | |
| * | | | | Merge branch 'master' into pollforcesetGravatar Yash Tibrewal2018-08-01
| |\ \ \ \ \ | | | |/ / / | | |/| | |
* | / | | | Revert "Revert "Restrict the number of threads in C++ sync server""Gravatar Sree Kuchibhotla2018-08-01
| |/ / / / |/| | | |
| | * | | Add more filter priority levelsGravatar yang-g2018-08-01
| | | | |
* | | | | Revert "Restrict the number of threads in C++ sync server"Gravatar Nicolas Noble2018-07-31
| | | | |
* | | | | Merge branch 'master' into rq-threadsGravatar Sree Kuchibhotla2018-07-31
|\ \ \ \ \ | | |/ / / | |/| | |
| * | | | Merge pull request #16163 from apolcyn/revert_revert_windows_breakageGravatar apolcyn2018-07-30
| |\ \ \ \ | | | | | | | | | | | | Revert "Revert "Merge pull request #15797 from apolcyn/windows_compile_and_sort""
* | | | | | Merge branch 'master' into rq-threadsGravatar Sree Kuchibhotla2018-07-30
|\| | | | |
| | | * | | Merge branch 'master' into pollforcesetGravatar Yash Tibrewal2018-07-30
| | | |\ \ \ | | |_|/ / / | |/| | | |
| * | | | | Merge pull request #16168 from yashykt/calldestroyasanGravatar Yash Tibrewal2018-07-30
| |\ \ \ \ \ | | | | | | | | | | | | | | Move freeing of error_string to release_call to fix ASAN bug
* | | | | | | Merge branch 'master' into rq-threadsGravatar Sree Kuchibhotla2018-07-30
|\| | | | | |
| * | | | | | Merge pull request #16166 from yashykt/dontabortonerrGravatar Yash Tibrewal2018-07-27
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Don't abort on notify_on_error for poll. Instead simply schedule clos…