Undefine GRPC_HAVE_MSG_NO_SIGNAL

Magenta does not support the MSG_NOSIGNAL flag since it doesn't support
signals.

Change-Id: I2713fb0d178c52938b5019e541c86bb80dbbe02f
diff --git a/src/core/lib/iomgr/port.h b/src/core/lib/iomgr/port.h
index 1e9b980..7f24247 100644
--- a/src/core/lib/iomgr/port.h
+++ b/src/core/lib/iomgr/port.h
@@ -129,7 +129,9 @@
 #define GRPC_HAVE_IFADDRS 1
 #define GRPC_HAVE_IPV6_RECVPKTINFO 1
 #define GRPC_HAVE_IP_PKTINFO 1
-#define GRPC_HAVE_MSG_NOSIGNAL 1
+// Magenta does not support the MSG_NOSIGNAL flag since it doesn't support
+// signals.
+#undef GRPC_HAVE_MSG_NOSIGNAL
 #define GRPC_HAVE_UNIX_SOCKET 1
 #define GRPC_POSIX_WAKEUP_FD 1
 // TODO(rudominer) Check that this does something we want.