summaryrefslogtreecommitdiffstats
path: root/base/file_descriptor_posix.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/file_descriptor_posix.h')
-rw-r--r--base/file_descriptor_posix.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/base/file_descriptor_posix.h b/base/file_descriptor_posix.h
index e9199eda..abc0789 100644
--- a/base/file_descriptor_posix.h
+++ b/base/file_descriptor_posix.h
@@ -24,6 +24,15 @@ struct FileDescriptor {
: fd(ifd),
auto_close(iauto_close) { }
+ bool operator==(const FileDescriptor& other) const {
+ return (fd == other.fd && auto_close == other.auto_close);
+ }
+
+ // A comparison operator so that we can use these as keys in a std::map.
+ bool operator<(const FileDescriptor& other) const {
+ return other.fd < fd;
+ }
+
int fd;
// If true, this file descriptor should be closed after it has been used. For
// example an IPC system might interpret this flag as indicating that the