aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr
Commit message (Collapse)AuthorAge
* Merge branch 'master' into gpr_review_host_portGravatar Vijay Pai2018-02-07
|\
| * Merge pull request #14272 from ncteisen/bug-chasingGravatar Jan Tattermusch2018-02-05
| |\ | | | | | | Fix resource_quota bug
| | * Mark poll FD shutdown as UNAVAILABLEGravatar ncteisen2018-02-02
| | |
* | | Merge branch 'master' into gpr_review_host_portGravatar Vijay Pai2018-02-02
|\ \ \
| | * | Batch size to 1 since it is better for latency (this is similar to whatGravatar Sree Kuchibhotla2018-02-01
| | | | | | | | | | | | | | | | we did in epoll1)
| | * | enable epollex by defaultGravatar Sree Kuchibhotla2018-02-01
| |/ /
| * | Merge pull request #14264 from yang-g/to_scopeGravatar Yang Gao2018-02-01
| |\ \ | | | | | | | | Deprecate GPR_TIMER_BEGIN/END and replace with GPR_TIMER_SCOPE.
| | * | Deprecate GPR_TIMER_BEGIN/END and replace with GPR_TIMER_SCOPE.Gravatar yang-g2018-01-31
| | |/
| * | Merge branch 'master' into polling-api-traceGravatar Sree Kuchibhotla2018-01-31
| |\|
| * | Fix format specifier for gpr_millisGravatar Sree Kuchibhotla2018-01-30
| | |
| * | Update ev_posix.ccGravatar Sree Kuchibhotla2018-01-30
| | |
| * | Debug statements for polling apiGravatar Sree Kuchibhotla2018-01-30
| | |
| | * Merge pull request #14215 from jtattermusch/fix_bad_merge_magic_numberGravatar Jan Tattermusch2018-01-31
| | |\ | | | | | | | | tcp_posix.cc: Magic number 13 probably a typo in manual merge
| | * \ Merge pull request #14217 from sreecha/epollex-fixGravatar Sree Kuchibhotla2018-01-30
| | |\ \ | | | | | | | | | | Fix an issue in epollex that was causing some workers to get stuck in pollset_work()
| | * | | Add timer trace annotations to epollexGravatar yang-g2018-01-30
| |/ / /
| | * | Update ev_epollex_linux.ccGravatar Sree Kuchibhotla2018-01-29
| | | |
| | * | Fix an issue in epollex that was causing some workers to get indefinitely ↵Gravatar Sree Kuchibhotla2018-01-29
| |/ / | | | | | | | | | stuck in pollset_work()
| | * magic number 13 probably a typo in manual mergeGravatar Jan Tattermusch2018-01-29
| |/
* | Privatize host_port.h; was not used in any wrapped language implementationGravatar Vijay Pai2018-01-25
| |
| * explicitly initialize all grpc_pollset fields (epollex)Gravatar Jan Tattermusch2018-01-25
| |
| * fix: avoid doing a poll when already shutdownGravatar Jan Tattermusch2018-01-25
|/
* Use DEBUG level for polling engine trace logs.Gravatar yang-g2018-01-24
|
* Rename 'gpr++' directories to 'gprpp'.Gravatar Mark D. Roth2018-01-19
|
* Merge pull request #14076 from grpc/execctx_remfinishGravatar Yash Tibrewal2018-01-18
|\ | | | | Remove extraneous Finish in ExecCtx
* \ 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
| |/ |/|
| * Split lib/support into lib/gpr and lib/gpr++.Gravatar Mark D. Roth2018-01-18
| |
* | Fixed typo in documentation.Gravatar Carlos O'Ryan2018-01-18
|/ | | s/opitons/options/
* 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.
* 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.
* Merge pull request #13975 from danzh2010/adjustrcvbufGravatar Yang Gao2018-01-12
|\ | | | | change udp_server receive/send buffer size and set SO_RXQ_OVFL
| * formatGravatar Dan Zhang2018-01-11
| |
| * %zd->%dGravatar Dan Zhang2018-01-11
| |
| * change to int typeGravatar Dan Zhang2018-01-11
| |
| * fix portability errorsGravatar Dan Zhang2018-01-11
| |
* | exec_ctx_fwd.h should never have been in public headersGravatar Vijay Pai2018-01-10
| |
| * change to pass in valueGravatar Dan Zhang2018-01-10
| |
| * Adjust receiv buffer via setsockopt for udp_server's listening socket.Gravatar Dan Zhang2018-01-10
|/ | | | | Since this socket is used for all incoming traffic, its current buffer 1MB is appearantly too small. Change it to 10 MB for now.
* Merge pull request #13912 from ncteisen/nullptrGravatar David G. Quintas2018-01-09
|\ | | | | Missing s/NULL/nullptr
* \ Merge pull request #13933 from kpayson64/avoid_stallGravatar kpayson642018-01-08
|\ \ | | | | | | Avoid stall
| * | Fix bug with pollhup workaroundGravatar Ken Payson2018-01-05
| | |
* | | Merge pull request #13931 from apolcyn/merge_18xGravatar apolcyn2018-01-05
|\ \ \ | | | | | | | | Merge 1.8.x into master
| * | | Manual merge conflict resolve: remove exec_ctx param from tcp_freeGravatar Alexander Polcyn2018-01-05
| | | |
| | * | Fix a Python spinlock bugGravatar Ken Payson2018-01-05
| | | |
* | | | Merge pull request #13900 from vjpai/odrGravatar Vijay Pai2018-01-05
|\ \ \ \ | | | | | | | | | | Wrap duplicated-name definitions in anonymous namespace (except for iomgr)
| | * | | Merge remote-tracking branch 'upstream/v1.8.x' into merge_18xGravatar Alexander Polcyn2018-01-05
| |/| | | |/| | | |
| | * | | Mark tcp errors as UNAVAILABLE in UV tcp codeGravatar murgatroid992018-01-04
| | | | |
| | | | * Missing s/NULL/nullptrGravatar ncteisen2018-01-03
| |_|_|/ |/| | |
| * | | Wrap duplicated-name definitions in anonymous namespaceGravatar Vijay Pai2018-01-02
| | | |