summaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-mojo_core_channel.cc
blob: 388f3a6caa602d1a264649452af5dcacf00fb239 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- mojo/core/channel.cc.orig	2022-09-24 10:57:32 UTC
+++ mojo/core/channel.cc
@@ -71,7 +71,11 @@ const size_t kMaxUnusedReadBufferCapacity = 4096;
 // Fuchsia: The zx_channel_write() API supports up to 64 handles.
 const size_t kMaxAttachedHandles = 64;
 
+#if defined(__i386__) && defined(OS_FREEBSD)
+const size_t kChannelMessageAlignment = 4;
+#else
 static_assert(alignof(std::max_align_t) >= kChannelMessageAlignment, "");
+#endif
 Channel::AlignedBuffer MakeAlignedBuffer(size_t size) {
   // Generic allocators (such as malloc) return a pointer that is suitably
   // aligned for storing any type of object with a fundamental alignment