Index: third_party/libjingle/overrides/talk/base/basictypes.h |
diff --git a/third_party/libjingle/overrides/talk/base/basictypes.h b/third_party/libjingle/overrides/talk/base/basictypes.h |
index 9de73d40b5cf54f541c1c6c132dbd9d90d80d7f8..d6f90cfda996c299c2dfb9e8e59db512075909bd 100644 |
--- a/third_party/libjingle/overrides/talk/base/basictypes.h |
+++ b/third_party/libjingle/overrides/talk/base/basictypes.h |
@@ -44,6 +44,10 @@ typedef int socklen_t; |
namespace talk_base { |
template<class T> inline T _min(T a, T b) { return (a > b) ? b : a; } |
template<class T> inline T _max(T a, T b) { return (a < b) ? b : a; } |
+ |
+// For wait functions that take a number of milliseconds, kForever indicates |
+// unlimited time. |
+const int kForever = -1; |
} |
#endif // OVERRIDES_TALK_BASE_BASICTYPES_H__ |