Index: runtime/bin/eventhandler_linux.h |
diff --git a/runtime/bin/eventhandler_linux.h b/runtime/bin/eventhandler_linux.h |
index 9d6172a3cc2ba23c1e7faf7f2a3c9e0717c3c74e..219ff4e27263581da204ccf1460c41b91ed1a0e1 100644 |
--- a/runtime/bin/eventhandler_linux.h |
+++ b/runtime/bin/eventhandler_linux.h |
@@ -50,6 +50,7 @@ class SocketData { |
} |
bool IsListeningSocket() { return (mask_ & (1 << kListeningSocket)) != 0; } |
+ bool IsPipe() { return (mask_ & (1 << kPipe)) != 0; } |
bool IsClosedRead() { return (flags_ & (1 << kClosedRead)) != 0; } |
bool IsClosedWrite() { return (flags_ & (1 << kClosedWrite)) != 0; } |