aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/iomgr
Commit message (Collapse)AuthorAge
* Merge branch 'master' into udpinterfaceGravatar danzh2018-03-06
|\
| * Move assignment for Thread, make destructor optional, loop cv waitsGravatar Vijay Pai2018-03-01
| |
* | fix formatGravatar Dan Zhang2018-02-28
| |
* | fix formatGravatar Dan Zhang2018-02-27
| |
* | Refactors grpc udp_server_listener to be object oriented. Also adds a mutex ↵Gravatar Dan Zhang2018-02-27
| | | | | | | | to each listener. Instead of sharing the mutex in udp_server for all listeners, this per-listener mutex can make most of the call to different listeners in parallel.
| * Merge branch 'master' into 2phase_thdGravatar Vijay Pai2018-02-22
| |\ | |/ |/|
| * Minor fixesGravatar Vijay Pai2018-02-20
| |
* | Add more bazel testsGravatar Adele Zhou2018-02-20
| |
| * Minor bug fixesGravatar Vijay Pai2018-02-20
| |
| * Merge branch '2phase_thd' of github.com:vjpai/grpc into 2phase_thdGravatar Vijay Pai2018-02-20
| |\
| * | Fix one Linux-specific testGravatar Vijay Pai2018-02-20
| | |
| | * clang-fmtGravatar Vijay Pai2018-02-19
| |/
| * C++ize gpr_thread as grpc_core::Thread, make it 2-phase init (construct/Start)Gravatar Vijay Pai2018-02-19
| |
| * Remove support for detached threads. All threads must be joined.Gravatar Vijay Pai2018-02-15
|/
* Internalize gpr_thd except for id and currentidGravatar Vijay Pai2018-02-12
|
* Manually fix build issueGravatar Noah Eisen2018-02-09
|
* Run clang fmtGravatar Noah Eisen2018-02-09
|
* Add some manual const casts to fix buildGravatar Noah Eisen2018-02-09
|
* Autofix c casts to c++ castsGravatar Noah Eisen2018-02-09
|
* Privatize useful.h and avl.hGravatar Vijay Pai2018-02-02
|
* Split lib/support into lib/gpr and lib/gpr++.Gravatar Mark D. Roth2018-01-18
|
* 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
* change to int typeGravatar Dan Zhang2018-01-11
|
* change to pass in valueGravatar Dan Zhang2018-01-10
|
* Missing s/NULL/nullptrGravatar ncteisen2018-01-03
|
* fix data race in shutdown_and_destroy_pollsetGravatar Dan Zhang2017-12-22
|
* fix typoGravatar Dan Zhang2017-12-22
|
* fix udp_server_test flakinessGravatar Dan Zhang2017-12-22
|
* format changeGravatar Dan Zhang2017-12-20
|
* Add a start_cb to grpc_udp_listener to be called when listener isGravatar Dan Zhang2017-12-20
| | | | created.
* 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 pull request #13058 from yashykt/execctxGravatar Yash Tibrewal2017-12-05
|\ | | | | All instances of exec_ctx being passed around in src/core removed
* \ Merge pull request #13559 from dmaclach/threadnamesGravatar Vijay Pai2017-12-05
|\ \ | | | | | | Add thread naming support on platforms that support it.
| | * Merge master into execctxGravatar Yash Tibrewal2017-12-05
| | |\ | |_|/ |/| |
| * | Update ev_epollsig_linux_test.ccGravatar Vijay Pai2017-12-04
| | |
| * | Fix up review commentsGravatar Dave MacLachlan2017-11-30
| | |
* | | fix compile errorGravatar Dan Zhang2017-11-30
| | |
| | * Remove _ prefixed variable namesGravatar Yash Tibrewal2017-11-29
| | |
| * | Add thread naming support on platforms that support it.Gravatar Dave MacLachlan2017-11-29
| | | | | | | | | | | | | | | | | | | | | | | | As a client of grpc I want to be aware of which threads are being created by grpc, and giving them recognizable names makes it significantly easier to diagnose what is going on in my programs. This provides thread names for macOS and Linux. Adding support for other platforms should be easy for platform specialists.
* | | Modify udp_server to do asynchronous read and write and only re-armGravatar Dan Zhang2017-11-29
|/ / | | | | | | | | | | | | notification when needed. This change prevents event loop thread from doing actual I/O work which might take long time.
| * Fix race conditions and more grpc_inits required. csharp tests will be fixed ↵Gravatar Yash Tibrewal2017-11-29
| | | | | | | | in a different PR
| * Fix tests to call grpc_init and grpc_shutdown before using exec_ctxGravatar Yash Tibrewal2017-11-28
| |
| * A few src/core fixes due to missing exec_ctx_finishGravatar Yash Tibrewal2017-11-21
| |
| * Merge masterGravatar Yash Tibrewal2017-11-21
| |\ | |/ |/|
* | Rename tracer_peer to tracer_utilGravatar ncteisen2017-11-17
| |
* | reviewer feedbackGravatar ncteisen2017-11-17
| |
| * Merge masterGravatar Yash Tibrewal2017-11-16
| |\
* | | Reviewer feedback: friend func not clasSGravatar ncteisen2017-11-16
| | |
| * | Move ExecCtx to grpc_core namespace. Make exec_ctx a private static in ↵Gravatar Yash Tibrewal2017-11-14
| | | | | | | | | | | | ExecCtx and some minor changes