diff options
author | Craig Tiller <ctiller@google.com> | 2016-01-28 16:00:40 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-01-28 16:00:40 -0800 |
commit | 6c3de35d3d233bb9b71d36a06f0f3282ce280359 (patch) | |
tree | d49d213cee44e67fd3413ab6eed386ec1994298c /test/core | |
parent | 822602cff0f3b1f8373ac06a8ab8fe9792b1037e (diff) | |
parent | dcc99a24eab23e42b63593c9a45e0e7e1392c49b (diff) |
Merge pull request #4775 from dgquintas/sync-async-plus-interfaces
Support mixing sync and async method in the same service + Separation of core from proto compiler output
Diffstat (limited to 'test/core')
-rw-r--r-- | test/core/surface/public_headers_must_be_c89.c | 15 | ||||
-rw-r--r-- | test/core/util/port_posix.c | 4 |
2 files changed, 17 insertions, 2 deletions
diff --git a/test/core/surface/public_headers_must_be_c89.c b/test/core/surface/public_headers_must_be_c89.c index 1e1524d098..579faa4441 100644 --- a/test/core/surface/public_headers_must_be_c89.c +++ b/test/core/surface/public_headers_must_be_c89.c @@ -37,6 +37,21 @@ #include <grpc/compression.h> #include <grpc/grpc.h> #include <grpc/grpc_security.h> +#include <grpc/impl/codegen/alloc.h> +#include <grpc/impl/codegen/atm.h> +#include <grpc/impl/codegen/byte_buffer.h> +#include <grpc/impl/codegen/compression_types.h> +#include <grpc/impl/codegen/connectivity_state.h> +#include <grpc/impl/codegen/grpc_types.h> +#include <grpc/impl/codegen/log.h> +#include <grpc/impl/codegen/port_platform.h> +#include <grpc/impl/codegen/propagation_bits.h> +#include <grpc/impl/codegen/slice.h> +#include <grpc/impl/codegen/slice_buffer.h> +#include <grpc/impl/codegen/status.h> +#include <grpc/impl/codegen/sync.h> +#include <grpc/impl/codegen/sync_generic.h> +#include <grpc/impl/codegen/time.h> #include <grpc/status.h> #include <grpc/support/alloc.h> #include <grpc/support/atm.h> diff --git a/test/core/util/port_posix.c b/test/core/util/port_posix.c index 11cefbf01c..0666a60c66 100644 --- a/test/core/util/port_posix.c +++ b/test/core/util/port_posix.c @@ -37,12 +37,12 @@ #include "test/core/util/port.h" +#include <errno.h> #include <math.h> #include <netinet/in.h> -#include <sys/socket.h> #include <stdio.h> -#include <errno.h> #include <string.h> +#include <sys/socket.h> #include <unistd.h> #include <grpc/grpc.h> |