aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
* Merge combiner and exec_ctx execution betterGravatar Craig Tiller2016-08-24
| | | | | | | Allows exec_ctx callbacks to be called while a combiner is executing. Also allows guaranteeing direct execution of callbacks from combiners, which should allow reducing cpu burn for up/down stack interactions in the future.
* Fix error logic mix upGravatar Craig Tiller2016-08-22
|
* Merge branch 'merge-parse' into clean-upGravatar Craig Tiller2016-08-22
|\
| * fixesGravatar Craig Tiller2016-08-22
| |
* | Remove global list of streams from transportGravatar Craig Tiller2016-08-21
|/
* Fix bugs, make it easier to find themGravatar Craig Tiller2016-08-19
|
* Add tracer for pending tagsGravatar Craig Tiller2016-08-19
|
* Fix refcounting bugsGravatar Craig Tiller2016-08-19
|
* Eliminate lock during initializationGravatar Craig Tiller2016-08-19
|
* Eliminate dual stream mapsGravatar Craig Tiller2016-08-19
|
* SimplificationsGravatar Craig Tiller2016-08-19
|
* Make failure to initialize a filter cause the server to silently swallow ↵Gravatar Craig Tiller2016-08-19
| | | | that request
* Fix pingGravatar Craig Tiller2016-08-18
|
* Fixes for memory misuseGravatar Craig Tiller2016-08-18
|
* Merge github.com:grpc/grpc into merge-parseGravatar Craig Tiller2016-08-18
|\
| * Merge pull request #7741 from nicolasnoble/manual-upmergeGravatar Nicolas Noble2016-08-18
| |\ | | | | | | Manual upmerge from v1.0.x to master.
| * | Reduce allocations associated with src/cpp/util/byte_buffer.cc.Gravatar Mark D. Roth2016-08-18
| | |
| * | Merge pull request #7766 from makdharma/cronet_e2e_take2Gravatar makdharma2016-08-17
| |\ \ | | | | | | | | fixed compile warnings treated as errors
| | * | changed from uint32_t to size_tGravatar Makarand Dharmapurikar2016-08-17
| | | |
| | * | fixed compile warnings treated as errorsGravatar Makarand Dharmapurikar2016-08-17
| | | |
| * | | Merge pull request #7713 from makdharma/cronet_e2e_take2Gravatar makdharma2016-08-17
| |\| | | | | | | | | | Cronet e2e take2
| | * | minor tweakGravatar Makarand Dharmapurikar2016-08-17
| | | |
| | * | more review feedback addressedGravatar Makarand Dharmapurikar2016-08-17
| | | |
| | * | addressed review feedback.Gravatar Makarand Dharmapurikar2016-08-16
| | | |
* | | | Fix typoGravatar Craig Tiller2016-08-16
| | | |
* | | | Initial pass reifying read and global locksGravatar Craig Tiller2016-08-16
| | | |
| * | | Include missing header in ev_epoll_linux.cGravatar Sree Kuchibhotla2016-08-16
| | | |
| | | * Merge branch 'v1.0.x' of https://github.com/grpc/grpc into manual-upmergeGravatar Nicolas "Pixel" Noble2016-08-16
| | | |\
| * | | \ Merge pull request #7640 from markdroth/handshaker_apiGravatar kpayson642016-08-15
| |\ \ \ \ | | |_|/ / | |/| | | Change handshaker API to support passing leftover bytes read between handshakers.
| | | * | bug fix for fireball appGravatar Makarand Dharmapurikar2016-08-15
| | | | | | | | | | | | | | | | | | | | | | | | | modified condition for trailing metadata. added more information to log message.
| * | | | Merge pull request #7730 from bsilver8192/masterGravatar Nicolas Noble2016-08-15
| |\ \ \ \ | | | | | | | | | | | | Remove <linux/unistd.h> include for compatibility with non-glibc
| * \ \ \ \ Merge pull request #7538 from thunderboltsid/pypy-experimentsGravatar kpayson642016-08-15
| |\ \ \ \ \ | | | | | | | | | | | | | | Change Python one-time grpc_init/grpc_shutdown to per-object-lifetime grpc_init/grpc_shutdown
| | | | | | * Merge pull request #7669 from apolcyn/reduce_bidi_threads_gaGravatar kpayson642016-08-15
| | | | | | |\ | | | | | | | | | | | | | | | | remove dedicated thread for ruby bidi read loop
* | | | | | | \ Merge branch 'grand-unified-closures' into offloadGravatar Craig Tiller2016-08-15
|\ \ \ \ \ \ \ \
| | * \ \ \ \ \ \ Merge pull request #7293 from apolcyn/send_metadata_from_server_handlerGravatar kpayson642016-08-15
| | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Moved sending of initial metadata from server into server handler
| | * \ \ \ \ \ \ \ Merge pull request #7668 from thunderboltsid/skip-test-for-pypyGravatar kpayson642016-08-15
| | |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | skip test run if pypy
| | | | | | | | | * \ Merge pull request #7702 from ↵Gravatar kpayson642016-08-15
| | | | | | | | | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nathanielmanistaatgoogle/distrib-interop-stress-ga-api Migrate distrib, interop, and stress to GA API
| * | | | | | | | | | | Merge github.com:grpc/grpc into grand-unified-closuresGravatar Craig Tiller2016-08-15
| |\| | | | | | | | | |
| | | | | | * | | | | | Remove <linux/unistd.h> include for compatibility with non-glibcGravatar Brian2016-08-15
| | | |_|_|/ / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On my glibc (Debian Jessie amd64 if anybody cares) system, <linux/unistd.h> is a strict subset of <sys/sycall.h>, which the file is already including. musl libc doesn't provide this file, and with this change all the C++ tests pass with musl libc. This came up in bazelbuild/bazel#1492.
| | | | | | | | * | | clean up sanity testGravatar Alex Polcyn2016-08-14
| | | | | | | | | | |
| | | | | | | | * | | Merge pull request #7671 from jtattermusch/coreclr_commandlineparserGravatar Jan Tattermusch2016-08-14
| | | | | | | | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Use CommandLineParser that supports CoreCLR
| | | | | | | | * \ \ \ Merge pull request #7598 from apolcyn/fix_sanity_test_diff_gaGravatar apolcyn2016-08-13
| | | | | | | | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | compare test config as objects instead of strings
| | | | | | | | | | * | | update to the newest CommandLineParser APIGravatar Jan Tattermusch2016-08-13
| | | | | | | | | | | | |
| | | | | | | | | | * | | migrate to the new CommandLineParser APIGravatar Jan Tattermusch2016-08-13
| | | | | | | | | | | | |
| | | | | | | | | | * | | use CommandLineParser with CoreCLR supportGravatar Jan Tattermusch2016-08-13
| | | | | | | | | |/ / / | | | | | | | | |/| | |
| | | | | | | | * | | | Merge pull request #7660 from jtattermusch/google_apis_auth_coreclrGravatar Jan Tattermusch2016-08-13
| | | | | | | | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Updgrade Google.Apis.Auth dependency to 0.15
| | * | | | | | | \ \ \ \ Merge pull request #7215 from murgatroid99/node_generator_nested_messagesGravatar Nicolas Noble2016-08-12
| | |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make Node code generator work properly with nested types
| | | | | | | | | * | | | | Clang format codeGravatar murgatroid992016-08-12
| | | | | | | | | | | | | |
| | | | | | | | | * | | | | Make Node code generator work properly with nested typesGravatar murgatroid992016-08-12
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Clang format codeGravatar murgatroid992016-08-12
| | | | | | | | | | | | | |