From 26711fdc8922df06123f2431e7cd9a27cdc2388a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 30 May 2024 05:12:31 +0200 Subject: Adding upstream version 0.0~git20230821.ec4566b. Signed-off-by: Daniel Baumann --- libc-top-half/musl/src/thread/pthread_mutex_trylock.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libc-top-half') 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) { -- cgit v1.2.3