aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/tcp_posix.cc
Commit message (Collapse)AuthorAge
* tcp_posix.cc: adhere to IOV_MAX in tcp_flushGravatar Carter Sande2018-06-27
|
* Remove already_closed param from fd_orphanGravatar Alexander Polcyn2018-06-07
|
* Merge pull request #15069 from muxi/prototype-cfstreamGravatar Muxi Yan2018-06-07
|\ | | | | Implementation of CFStream
* | Rename tcp->finished_edgeGravatar Sree Kuchibhotla2018-06-04
| |
| * Merge branch 'master' into prototype-cfstreamGravatar Muxi Yan2018-05-22
| |\ | |/ |/|
| * CommentsGravatar Muxi Yan2018-05-16
| |
| * Change existing build system for CFStreamGravatar Muxi Yan2018-05-15
| |
* | Add combiner_run to run closures immediately if we already have the combiner ↵Gravatar Yash Tibrewal2018-05-01
| | | | | | | | lock
* | Fix typos in GPR_TIMER_SCOPEGravatar Hope Casey-Allen2018-04-29
| |
* | Change trace logging to use GPR_INFO instead of GPR_DEBUG.Gravatar Mark D. Roth2018-04-25
|/
* Abstract libuv implementationGravatar kpayson642018-03-13
| | | | | Structures the libuv implementation to allow for a plugable BSD style socket implementation to allow for other IO Managers
* Add a sanity check for inclusion of port_platform.hGravatar Alexander Polcyn2018-02-23
|
* 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
|
* Deprecate GPR_TIMER_BEGIN/END and replace with GPR_TIMER_SCOPE.Gravatar yang-g2018-01-31
|
* magic number 13 probably a typo in manual mergeGravatar Jan Tattermusch2018-01-29
|
* Split lib/support into lib/gpr and lib/gpr++.Gravatar Mark D. Roth2018-01-18
|
* Wrap duplicated-name definitions in anonymous namespaceGravatar Vijay Pai2018-01-02
|
* Mark tcp errors as UNAVAILABLEGravatar yang-g2017-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
|
* Merge masterGravatar Yash Tibrewal2017-11-21
|\
| * Merge pull request #13391 from ncteisen/more-eager-freeGravatar Noah Eisen2017-11-20
| |\ | | | | | | Eagerly Free Slices in Case of Partial Write
| | * Swtich to using grpc_bb_take_firstGravatar ncteisen2017-11-17
| | |
* | | Merge masterGravatar Yash Tibrewal2017-11-16
|\ \ \
| | | * unref before write failures for completnessGravatar ncteisen2017-11-16
| | | |
| | | * Reviewer feedback: no API changeGravatar ncteisen2017-11-16
| | | |
| | | * add testGravatar ncteisen2017-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
| | * | clang fmtGravatar Noah Eisen2017-11-14
| | | |
| | * | clang tidyGravatar Noah Eisen2017-11-14
| | | |
| | | * Add partial unrefGravatar ncteisen2017-11-14
| | | |
| | | * clang fmtGravatar ncteisen2017-11-14
| | | |
| | | * Merge branch 'master' of https://github.com/grpc/grpc into eager-freeGravatar ncteisen2017-11-14
| | | |\ | | |_|/ | |/| |
* | | | Address some PR commentsGravatar Yash Tibrewal2017-11-14
| | | |
| | | * eagerly free slice buffer after writeGravatar ncteisen2017-11-10
| | | |
| * | | clang-format after nullptr changesGravatar Craig Tiller2017-11-10
| | | |
* | | | gpr_malloc to gpr_zallocGravatar Yash Tibrewal2017-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
| | |
| * | Merge pull request #12219 from y-zeng/http2_connectorGravatar Yuchen Zeng2017-10-24
| |\ \ | | | | | | | | Add the endpoint used by the handshake process to connector's pollset_set
* | | | 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.
| | | * Better nameGravatar Craig Tiller2017-10-18
| | | |
| | | * Merge github.com:grpc/grpc into tracerGravatar Craig Tiller2017-10-18
| | | |\ | | |_|/ | |/| |
| | | * C++ize tracingGravatar Craig Tiller2017-10-16
| |_|/ |/| |
| * | Merge github.com:grpc/grpc into epexinfGravatar Craig Tiller2017-10-12
| |\ \ | |/ / |/| |
| * | Merge github.com:grpc/grpc into epexinfGravatar Craig Tiller2017-10-05
| | |