aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/iomgr
Commit message (Collapse)AuthorAge
* clang-formatGravatar Craig Tiller2016-02-25
|
* Make out private bits privateGravatar Craig Tiller2016-02-25
|
* Clean up headersGravatar Craig Tiller2016-02-25
|
* Libraries compileGravatar Craig Tiller2016-02-25
|
* pollset_set integrationGravatar Craig Tiller2016-02-25
|
* Remove pollset_set_posix.cGravatar Craig Tiller2016-02-25
|
* Merge branch 'hide-the-pollset-set' into cleaner-posix2Gravatar Craig Tiller2016-02-25
|\
| * Add an implementation firewall against pollset_setGravatar Craig Tiller2016-02-24
| | | | | | | | So multiple implementations can exist in one binary
| * Merge branch 'hide-the-worker' into hide-the-pollsetGravatar Craig Tiller2016-02-24
| |\
| | * Port pollset worker changes to windowsGravatar Craig Tiller2016-02-24
| | |
| | * Merge github.com:grpc/grpc into hide-the-workerGravatar Craig Tiller2016-02-22
| | |\
| | | * Merge pull request #5257 from ctiller/cleaner-posixGravatar Vijay Pai2016-02-22
| | | |\ | | | | | | | | | | Separate timer checking from pollsets
* | | | | Start migrating code into ev_XXXGravatar Craig Tiller2016-02-22
| | | | |
* | | | | Merge branch 'hide-the-pollset' into cleaner-posix2Gravatar Craig Tiller2016-02-22
|\| | | |
| * | | | Update copyrightsGravatar Craig Tiller2016-02-19
| | | | |
| * | | | Provide an interface firewall between pollset and its implementationsGravatar Craig Tiller2016-02-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Starting to allow for >1 implementation of pollset within a binary. Do so without requiring an extra allocation for completion queues (which we could not tolerate).
* | | | | ProgressGravatar Craig Tiller2016-02-19
| | | | |
| | * | | Fix copyrightsGravatar Craig Tiller2016-02-18
| | | | |
| | * | | Merge branch 'cleaner-posix' into hide-the-workerGravatar Craig Tiller2016-02-18
| |/| | | | | | |/ | | |/|
| | * | Fix copyrightsGravatar Craig Tiller2016-02-18
| | | |
| * | | Update windowsGravatar Craig Tiller2016-02-18
| | | |
| * | | Move worker into pollsetGravatar Craig Tiller2016-02-18
| |/ /
* | | Merge branch 'cleaner-posix' into cleaner-posix2Gravatar Craig Tiller2016-02-18
|\| |
| * | Fix tcp_client_posix_testGravatar Craig Tiller2016-02-18
| | |
| * | Merge github.com:grpc/grpc into cleaner-posixGravatar Craig Tiller2016-02-18
| |\ \
| | | * Merge branch 'master' into poll_override2Gravatar vjpai2016-02-17
| | | |\ | | | |/ | | |/|
| | * | Fix call to grpc_exec_ctx_enqueueGravatar Bogdan Drutu2016-02-16
| | | |
| | * | Fix the arguments type for on_read and destroy callbacks to match with ↵Gravatar Bogdan Drutu2016-02-16
| | | | | | | | | | | | | | | | grpc_iomgr_cb_func
* | | | Moving fd code into ev codeGravatar Craig Tiller2016-02-16
|/ / /
* / / Separate timer checking from pollsetsGravatar Craig Tiller2016-02-16
|/ /
| * Comment the requirements for changing grpc_poll_function and doGravatar vjpai2016-02-15
|/ | | | poll overrides in such a way as to avoid polling races
* WTFGravatar Craig Tiller2016-02-10
|
* Fix 1 second stall on WindowsGravatar Craig Tiller2016-02-10
|
* Merge pull request #5088 from murgatroid99/core_long_int64_tGravatar Craig Tiller2016-02-08
|\ | | | | Replace 'long' with 'int64_t' in public core headers
| * Replace 'long' with 'int64_t' in public core headersGravatar murgatroid992016-02-05
| |
* | Fix comments in tcp_server.hGravatar Dan Born2016-02-02
|/
* Fix copyrightsGravatar Craig Tiller2016-01-28
|
* Fix windowsGravatar Craig Tiller2016-01-28
|
* Update copyrightsGravatar Craig Tiller2016-01-28
|
* Preparatory changes for work sheddingGravatar Craig Tiller2016-01-28
| | | | | | | | - cleanup: change grpc_iomgr_cb_func to take a bool instead of int success - cleanup: follow through with iomgr callback scheduling functions - prepare: add a workqueue to offload to to grpc_exec_ctx_enqueue* functions
* Merge pull request #4939 from rjshade/remove_unused_methodGravatar Craig Tiller2016-01-28
|\ | | | | Remove unused grpc_udp_server_write method
| * Update copyright comments.Gravatar Robbie Shade2016-01-28
| |
| * Remove unused grpc_udp_server_write methodGravatar Robbie Shade2016-01-28
| |
* | Tidy.Gravatar Nicolas "Pixel" Noble2016-01-28
| |
* | More fixes.Gravatar Nicolas "Pixel" Noble2016-01-28
| |
* | Tidying things up.Gravatar Nicolas "Pixel" Noble2016-01-27
| |
* | Cleaning up Windows compilation.Gravatar Nicolas "Pixel" Noble2016-01-26
| |
* | Merge branch 'tcp_listener' into tcp_server_shutdownGravatar Dan Born2016-01-20
|\ \
| * | Merge branch 'master' into tcp_listenerGravatar Dan Born2016-01-20
| |\|
* | | Add shutdown_starting callbacks to tcp_server.Gravatar Dan Born2016-01-14
|/ / | | | | | | | | tcp_server_posix_test illustrates how this can be used to implement a weak referencing mechanism.