Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1393)

Unified Diff: mojo/public/cpp/system/handle.h

Issue 385983008: Mojo + NaCl prototype. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Dead files Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mojo/public/cpp/system/handle.h
diff --git a/mojo/public/cpp/system/handle.h b/mojo/public/cpp/system/handle.h
index 7aa20f521787e161fd6da542a59245322c703a50..d23e5ca7d148def9d987d44586339530204a87db 100644
--- a/mojo/public/cpp/system/handle.h
+++ b/mojo/public/cpp/system/handle.h
@@ -238,7 +238,15 @@ inline MojoResult CloseRaw(Handle handle) {
// Strict weak ordering, so that |Handle|s can be used as keys in |std::map|s,
// etc.
+#ifdef __native_client__
+// Passing the operands by reference confuses the STL implementation in NaCl's
viettrungluu 2014/08/20 19:52:38 Probably we can just make it take |Handle|s by val
Nick Bray (chromium) 2014/09/03 23:45:03 Done. The only quirk would be if Handle got a des
+// GCC toolchain and results in specialized templates that break strict aliasing
Mark Seaborn 2014/08/26 16:25:54 I don't think we build with -fstrict-aliasing thou
Nick Bray (chromium) 2014/09/03 23:45:03 No bug filed because NaCl GCC is old and awful, an
+// rules.
+// TODO(ncbray): unhack this.
+inline bool operator<(const Handle a, const Handle b) {
+#else
inline bool operator<(const Handle& a, const Handle& b) {
+#endif
return a.value() < b.value();
}
« mojo/monacl/monacl_sel_main.cc ('K') | « mojo/public/c/system/tests/core_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698