aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
Commit message (Collapse)AuthorAge
* Fix commentGravatar Juanli Shen2018-01-24
|
* Extract lb_calld from glb_policyGravatar Juanli Shen2018-01-23
|
* Merge pull request #14060 from euroelessar/boringssl-use-bio-pairGravatar Jiangtao Li2018-01-23
|\ | | | | [ssl] Use ring buffer in ssl transport layer
* | resolve commentGravatar yang-g2018-01-23
| |
* | Clear pending read when service handler is finishedGravatar yang-g2018-01-23
| |
* | Merge pull request #14093 from markdroth/arena_alignmentGravatar Mark D. Roth2018-01-23
|\ \ | | | | | | Fix arena to return aligned memory.
* \ \ Merge pull request #14079 from kpayson64/disable_fork_supportGravatar kpayson642018-01-22
|\ \ \ | | | | | | | | Allow turning off fork support with env variable
| | * | Fix arena to return aligned memory.Gravatar Mark D. Roth2018-01-22
| |/ / |/| |
| | * [ssl] Reduce number of copiesGravatar Ruslan Nigmatullin2018-01-19
| | |
* | | Merge pull request #14092 from mehrdada/bump1-10Gravatar Mehrdad Afshari2018-01-19
|\ \ \ | | | | | | | | Bump version to 1.10
* \ \ \ Merge pull request #14089 from markdroth/no_plus_in_directory_namesGravatar Mark D. Roth2018-01-19
|\ \ \ \ | |_|_|/ |/| | | Rename 'gpr++' directories to 'gprpp'.
| | * | Regenerate projectsGravatar Mehrdad Afshari2018-01-19
| |/ / |/| |
| * | Rename 'gpr++' directories to 'gprpp'.Gravatar Mark D. Roth2018-01-19
| | |
| | * PR feedback changesGravatar Ken Payson2018-01-19
| | |
* | | Merge pull request #14070 from markdroth/backoff_api_cleanupGravatar Mark D. Roth2018-01-19
|\ \ \ | |/ / |/| | Combine BackOff Begin() and Step() methods.
* | | Merge pull request #14076 from grpc/execctx_remfinishGravatar Yash Tibrewal2018-01-18
|\ \ \ | | | | | | | | Remove extraneous Finish in ExecCtx
| | | * Merge remote-tracking branch 'upstream/master' into disable_fork_supportGravatar Ken Payson2018-01-18
| | | |\ | |_|_|/ |/| | |
| | | * Merge remote-tracking branch 'upstream/master' into disable_fork_supportGravatar Ken Payson2018-01-18
| | | |\
| | | * | Allow turning off fork support with env variableGravatar Ken Payson2018-01-18
| | | | |
* | | | | Merge pull request #14051 from markdroth/reorganize_supportGravatar Mark D. Roth2018-01-18
|\ \ \ \ \ | | | | | | | | | | | | Split lib/support into lib/gpr and lib/gpr++.
| | * | | | Remove extraneous Finish in ExecCtxGravatar Yash Tibrewal2018-01-18
| |/ / / / |/| | | |
* | | | | Merge pull request #14068 from coryan/patch-1Gravatar Mehrdad Afshari2018-01-18
|\ \ \ \ \ | |_|_|_|/ |/| | | | Fixed typo in documentation.
| | * | | Split lib/support into lib/gpr and lib/gpr++.Gravatar Mark D. Roth2018-01-18
| |/ / / |/| | |
| | * | Combine BackOff Begin() and Step() methods.Gravatar Mark D. Roth2018-01-18
| | | |
* | | | fix "not enough actual parameters for macro" warningGravatar Jan Tattermusch2018-01-18
| | | |
| * | | Fixed typo in documentation.Gravatar Carlos O'Ryan2018-01-18
|/ / / | | | | | | s/opitons/options/
* | | Merge pull request #14052 from mehrdada/legacyepollGravatar Mehrdad Afshari2018-01-17
|\ \ \ | | | | | | | | Explicitly enable epoll1 on manylinux1
| * | | Eliminate GRPC_LINUX_LEGACY_EPOLLGravatar Mehrdad Afshari2018-01-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Rename: GRPC_LINUX_LEGACY_EPOLL to GRPC_LINUX_EPOLL, and GRPC_LINUX_EPOLL to GRPC_LINUX_EPOLL_CREATE1
| * | | Explicitly enable epoll on manylinux1Gravatar Mehrdad Afshari2018-01-17
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For some reason, the glibc version check does not enable GRPC_LINUX_EPOLL on manylinux1. This commit: * Explicitly enables GRPC_LINUX_LEGACY_EPOLL on MANYLINUX1 * Switches the flag to enable epoll1 IO manager to GRPC_LINUX_LEGACY_EPOLL instead of GRPC_LINUX_EPOLL. This is to ensure epollex and epollsig that are not yet compatible with epoll_create (not epoll_create1) do not get activated unintentionally.
* | | Fix bad mergeGravatar David Garcia Quintas2018-01-17
| | |
* | | Merge branch 'master' of github.com:grpc/grpc into conn_subchannelGravatar David Garcia Quintas2018-01-17
|\| |
| * | Merge pull request #14041 from mehrdada/enable-epollGravatar Mehrdad Afshari2018-01-17
| |\ \ | | | | | | | | Enable epoll on Python manylinux1
| * \ \ Merge pull request #13984 from markdroth/ref_countingGravatar Mark D. Roth2018-01-17
| |\ \ \ | | | | | | | | | | Fix existing ref counting classes and add new ones.
| | | * | Enable epoll on Python manylinux1Gravatar Mehrdad Afshari2018-01-16
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Python packages built for Linux and uploaded to PyPI are required to target a standardized platform specification dubbed `manylinux1`, which tries to cover a vast array of Linux distributions, thereby emulating a legacy lowest-common-denominator distribution, with an old `glibc` that does not support `epoll_create1`, but provides the `epoll_create` interface. While there are race condition risks associated with utilizing the latter interface and setting the `O_CLOEXEC` flag immediately on the file descriptor returned by `epoll_create`, the payoff is well worth the risks for our Python users, who currently end up falling back on `poll` polling engine when downloading our Linux binary packages.
| | * | Code review changes.Gravatar Mark D. Roth2018-01-16
| | | |
| * | | Merge pull request #13363 from grpc/revert-13346-revert-13322-oauth_failureGravatar Jan Tattermusch2018-01-16
| |\ \ \ | | | | | | | | | | Revert "Revert "Switching from UNAUTHENTICATED to UNAVAILABLE for auth metadata failure""
| | | * \ Merge remote-tracking branch 'upstream/master' into ref_countingGravatar Mark D. Roth2018-01-16
| | | |\ \ | | |_|/ / | |/| | |
| | | * | clang-formatGravatar Mark D. Roth2018-01-16
| | | | |
| * | | | Merge pull request #13289 from ncteisen/flow-control-part4Gravatar Vijay Pai2018-01-12
| |\ \ \ \ | | | | | | | | | | | | Virtual Flow Control
* | | | | | PR comments, round 4Gravatar David Garcia Quintas2018-01-12
| | | | | |
* | | | | | PR comments, round 3Gravatar David Garcia Quintas2018-01-12
| | | | | |
| * | | | | Merge pull request #13975 from danzh2010/adjustrcvbufGravatar Yang Gao2018-01-12
| |\ \ \ \ \ | | | | | | | | | | | | | | change udp_server receive/send buffer size and set SO_RXQ_OVFL
| | | | | * | Add equality operators to RefCountedPtr.Gravatar Mark D. Roth2018-01-12
| | | | | | |
| * | | | | | Merge pull request #13985 from markdroth/lb_policy_ref_simplificationGravatar Mark D. Roth2018-01-12
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Simply LB policy refcounting, again.
| * | | | | | | Revert "Revert "Set error status correctly on server side""Gravatar Ken Payson2018-01-11
| | |_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | This reverts commit 951f84aea00a1f8a65cf160d7d8f342c30593000.
* | | | | | | PR comments, round 2Gravatar David Garcia Quintas2018-01-11
| | | | | | |
| * | | | | | Revert "Set error status correctly on server side"Gravatar David G. Quintas2018-01-11
| | | | | | |
| | | * | | | formatGravatar Dan Zhang2018-01-11
| | | | | | |
| | | * | | | %zd->%dGravatar Dan Zhang2018-01-11
| | | | | | |
| | | * | | | change to int typeGravatar Dan Zhang2018-01-11
| | | | | | |