diff options
author | Julien Boeuf <jboeuf@google.com> | 2015-10-09 16:26:39 -0700 |
---|---|---|
committer | Julien Boeuf <jboeuf@google.com> | 2015-10-09 16:26:39 -0700 |
commit | a8420a4cd88108739b1147990c6bc99a3e590191 (patch) | |
tree | 4399c566ae49907e18bba95d54673ab5bb73fb12 /include | |
parent | acd835f99e694027faa6d7b1734d307b6e71a9ee (diff) | |
parent | abaf47c3a57d5f00c2e75b98ed9a52b35252c4fa (diff) |
Merge branch 'master' of github.com:grpc/grpc into core_creds_api_change
Diffstat (limited to 'include')
-rw-r--r-- | include/grpc/support/port_platform.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/grpc/support/port_platform.h b/include/grpc/support/port_platform.h index 434dd6de87..f98038da52 100644 --- a/include/grpc/support/port_platform.h +++ b/include/grpc/support/port_platform.h @@ -181,6 +181,7 @@ #ifndef _BSD_SOURCE #define _BSD_SOURCE #endif +#define GPR_FORBID_UNREACHABLE_CODE #define GPR_MSG_IOVLEN_TYPE int #if TARGET_OS_IPHONE #define GPR_PLATFORM_STRING "ios" @@ -336,4 +337,15 @@ typedef uintptr_t gpr_uintptr; #endif #endif +#ifdef GPR_FORBID_UNREACHABLE_CODE +#define GPR_UNREACHABLE_CODE(STATEMENT) +#else +#define GPR_UNREACHABLE_CODE(STATEMENT) \ + do { \ + gpr_log(GPR_ERROR, "Should never reach here."); \ + abort(); \ + STATEMENT; \ + } while (0) +#endif /* GPR_FORBID_UNREACHABLE_CODE */ + #endif /* GRPC_SUPPORT_PORT_PLATFORM_H */ |