summaryrefslogtreecommitdiffstats
path: root/mojo/public/platform/native/system_thunks.cc
diff options
context:
space:
mode:
Diffstat (limited to 'mojo/public/platform/native/system_thunks.cc')
-rw-r--r--mojo/public/platform/native/system_thunks.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/mojo/public/platform/native/system_thunks.cc b/mojo/public/platform/native/system_thunks.cc
index fd14d48..72d879b 100644
--- a/mojo/public/platform/native/system_thunks.cc
+++ b/mojo/public/platform/native/system_thunks.cc
@@ -200,6 +200,11 @@ MojoResult MojoCancelWatch(MojoHandle handle, uintptr_t context) {
return g_thunks.CancelWatch(handle, context);
}
+MojoResult MojoFuseMessagePipes(MojoHandle handle0, MojoHandle handle1) {
+ assert(g_thunks.FuseMessagePipes);
+ return g_thunks.FuseMessagePipes(handle0, handle1);
+}
+
extern "C" THUNK_EXPORT size_t MojoSetSystemThunks(
const MojoSystemThunks* system_thunks) {
if (system_thunks->size >= sizeof(g_thunks))