diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 03:12:31 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 03:12:31 +0000 |
commit | b3f5400c4adb3b0093a891dcfb04aedf96e6b538 (patch) | |
tree | 1856f0f996db2497c208a6d049486b1950e81cff /libc-top-half | |
parent | Adding debian version 0.0~git20230621.7018e24-2. (diff) | |
download | wasi-libc-b3f5400c4adb3b0093a891dcfb04aedf96e6b538.tar.xz wasi-libc-b3f5400c4adb3b0093a891dcfb04aedf96e6b538.zip |
Merging upstream version 0.0~git20230821.ec4566b.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'libc-top-half')
-rw-r--r-- | libc-top-half/musl/src/thread/pthread_mutex_trylock.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/thread/pthread_mutex_trylock.c b/libc-top-half/musl/src/thread/pthread_mutex_trylock.c index c60b45f..2b06507 100644 --- a/libc-top-half/musl/src/thread/pthread_mutex_trylock.c +++ b/libc-top-half/musl/src/thread/pthread_mutex_trylock.c @@ -21,7 +21,9 @@ int __pthread_mutex_trylock_owner(pthread_mutex_t *m) return 0; } } +#ifdef __wasilibc_unmodified_upstream if (own == 0x3fffffff) return ENOTRECOVERABLE; +#endif if (own || (old && !(type & 4))) return EBUSY; if (type & 128) { |