Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Raptor Engineering Public Development
Chromium
OpenPOWER Patches
Commits
a85b64f0
Commit
a85b64f0
authored
4 months ago
by
Timothy Pearson
Browse files
Options
Download
Email Patches
Plain Diff
Add missing pthread stack size for ppc64
parent
d2f6519a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
patches/ppc64le/core/add-ppc64-pthread-stack-size.patch
patches/ppc64le/core/add-ppc64-pthread-stack-size.patch
+12
-0
patches/series
patches/series
+1
-0
No files found.
patches/ppc64le/core/add-ppc64-pthread-stack-size.patch
0 → 100644
View file @
a85b64f0
--- a/base/process/launch.h
+++ b/base/process/launch.h
@@ -54,6 +54,9 @@
#if defined(ARCH_CPU_ARM64)
#define PTHREAD_STACK_MIN_CONST \
(__builtin_constant_p(PTHREAD_STACK_MIN) ? PTHREAD_STACK_MIN : 131072)
+#elif defined(ARCH_CPU_PPC64)
+#define PTHREAD_STACK_MIN_CONST \
+ (__builtin_constant_p(PTHREAD_STACK_MIN) ? PTHREAD_STACK_MIN : 131072)
#else
#define PTHREAD_STACK_MIN_CONST \
(__builtin_constant_p(PTHREAD_STACK_MIN) ? PTHREAD_STACK_MIN : 16384)
This diff is collapsed.
Click to expand it.
patches/series
View file @
a85b64f0
# POWER support
ppc64le/core/add-ppc64-architecture-string.patch
ppc64le/core/add-ppc64-pthread-stack-size.patch
ppc64le/sandbox/0001-linux-seccomp-bpf-ppc64-glibc-workaround-in-SIGSYS-h.patch
ppc64le/sandbox/0001-sandbox-Enable-seccomp_bpf-for-ppc64.patch
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment