diff options
author | Vijay Pai <vpai@google.com> | 2017-02-22 15:30:16 -0800 |
---|---|---|
committer | Vijay Pai <vpai@google.com> | 2017-05-23 09:20:56 -0700 |
commit | 4b07aab51363243d3c3a04876a91dd4c68581a89 (patch) | |
tree | b01e0b9e140ae73cda67f8ed089020b813677ab4 /src/proto | |
parent | 275bc932d294e6f23de0d3922046840d0244c15d (diff) |
Support multiple threads per cq sharing, add tests
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/grpc/testing/control.proto | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/proto/grpc/testing/control.proto b/src/proto/grpc/testing/control.proto index 1f4569e278..e1fc5fa2ca 100644 --- a/src/proto/grpc/testing/control.proto +++ b/src/proto/grpc/testing/control.proto @@ -117,6 +117,9 @@ message ClientConfig { repeated ChannelArg channel_args = 16; + // Number of threads that share each completion queue + int32 threads_per_cq = 17; + // Number of messages on a stream before it gets finished/restarted int32 messages_per_stream = 18; } @@ -157,6 +160,9 @@ message ServerConfig { // If we use an OTHER_SERVER client_type, this string gives more detail string other_server_api = 11; + // Number of threads that share each completion queue + int32 threads_per_cq = 12; + // c++-only options (for now) -------------------------------- // Buffer pool size (no buffer pool specified if unset) |