aboutsummaryrefslogtreecommitdiff
path: root/devel/electron37/files/patch-base_threading_platform__thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'devel/electron37/files/patch-base_threading_platform__thread.h')
-rw-r--r--devel/electron37/files/patch-base_threading_platform__thread.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/electron37/files/patch-base_threading_platform__thread.h b/devel/electron37/files/patch-base_threading_platform__thread.h
new file mode 100644
index 000000000000..31d66a778135
--- /dev/null
+++ b/devel/electron37/files/patch-base_threading_platform__thread.h
@@ -0,0 +1,11 @@
+--- base/threading/platform_thread.h.orig 2025-04-22 20:15:27 UTC
++++ base/threading/platform_thread.h
+@@ -55,6 +55,8 @@ class BASE_EXPORT PlatformThreadId {
+ using UnderlyingType = zx_koid_t;
+ #elif BUILDFLAG(IS_APPLE)
+ using UnderlyingType = uint64_t;
++#elif BUILDFLAG(IS_BSD)
++ using UnderlyingType = uint64_t;
+ #elif BUILDFLAG(IS_POSIX)
+ using UnderlyingType = pid_t;
+ #endif