From dc8ee7b2f0887350b6f4a850325449e27854c79f Mon Sep 17 00:00:00 2001 From: 4lDO2 <4lDO2@protonmail.com> Date: Wed, 26 Apr 2023 15:54:13 +0200 Subject: [PATCH] Adjust pthread_cond_t size. --- src/header/bits_pthread/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/header/bits_pthread/mod.rs b/src/header/bits_pthread/mod.rs index 95741108..285f3a00 100644 --- a/src/header/bits_pthread/mod.rs +++ b/src/header/bits_pthread/mod.rs @@ -30,7 +30,7 @@ pub union pthread_rwlock_t { } #[repr(C)] pub union pthread_barrier_t { - __relibc_internal_size: [c_uchar; 12], + __relibc_internal_size: [c_uchar; 16], __relibc_internal_align: c_int, } #[repr(C)] -- GitLab