c987560802
```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
24 lines
1.1 KiB
Diff
24 lines
1.1 KiB
Diff
Use monotonic clock for pthread_cond_timedwait with musl too.
|
|
|
|
diff --git a/v8/src/base/platform/condition-variable.cc b/v8/src/base/platform/condition-variable.cc
|
|
index 5ea7083..c13027e 100644
|
|
--- a/v8/src/base/platform/condition-variable.cc
|
|
+++ b/v8/src/base/platform/condition-variable.cc
|
|
@@ -16,7 +16,7 @@ namespace base {
|
|
|
|
ConditionVariable::ConditionVariable() {
|
|
#if (V8_OS_FREEBSD || V8_OS_NETBSD || V8_OS_OPENBSD || \
|
|
- (V8_OS_LINUX && V8_LIBC_GLIBC))
|
|
+ V8_OS_LINUX)
|
|
// On Free/Net/OpenBSD and Linux with glibc we can change the time
|
|
// source for pthread_cond_timedwait() to use the monotonic clock.
|
|
pthread_condattr_t attr;
|
|
@@ -92,7 +92,7 @@ bool ConditionVariable::WaitFor(Mutex* mutex, const TimeDelta& rel_time) {
|
|
&native_handle_, &mutex->native_handle(), &ts);
|
|
#else
|
|
#if (V8_OS_FREEBSD || V8_OS_NETBSD || V8_OS_OPENBSD || \
|
|
- (V8_OS_LINUX && V8_LIBC_GLIBC))
|
|
+ V8_OS_LINUX)
|
|
// On Free/Net/OpenBSD and Linux with glibc we can change the time
|
|
// source for pthread_cond_timedwait() to use the monotonic clock.
|
|
result = clock_gettime(CLOCK_MONOTONIC, &ts);
|