From 1c6ae5c5a2bbbbce634b58337cdea2c7a5ddd275 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Tue, 5 Nov 2013 20:00:35 -0500 Subject: [PATCH] fix alignment of pthread_attr_t Closes #10300 --- src/libstd/libc.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/libstd/libc.rs b/src/libstd/libc.rs index 9c84f770807f9..5a02df431e5dd 100644 --- a/src/libstd/libc.rs +++ b/src/libstd/libc.rs @@ -297,7 +297,7 @@ pub mod types { } #[cfg(target_arch = "x86")] pub mod posix01 { - use libc::types::os::arch::c95::{c_char, c_short, c_long, time_t}; + use libc::types::os::arch::c95::{c_short, c_long, time_t}; use libc::types::os::arch::posix88::{dev_t, gid_t, ino_t}; use libc::types::os::arch::posix88::{mode_t, off_t}; use libc::types::os::arch::posix88::{uid_t}; @@ -330,12 +330,12 @@ pub mod types { } pub struct pthread_attr_t { - __size: [c_char, ..36] + __size: [u32, ..9] } } #[cfg(target_arch = "arm")] pub mod posix01 { - use libc::types::os::arch::c95::{c_char, c_uchar, c_uint, c_ulong, time_t}; + use libc::types::os::arch::c95::{c_uchar, c_uint, c_ulong, time_t}; use libc::types::os::arch::c99::{c_longlong, c_ulonglong}; use libc::types::os::arch::posix88::{uid_t, gid_t, ino_t}; @@ -366,12 +366,12 @@ pub mod types { } pub struct pthread_attr_t { - __size: [c_char, ..36] + __size: [u32, ..9] } } #[cfg(target_arch = "mips")] pub mod posix01 { - use libc::types::os::arch::c95::{c_char, c_long, c_ulong, time_t}; + use libc::types::os::arch::c95::{c_long, c_ulong, time_t}; use libc::types::os::arch::posix88::{gid_t, ino_t}; use libc::types::os::arch::posix88::{mode_t, off_t}; use libc::types::os::arch::posix88::{uid_t}; @@ -404,7 +404,7 @@ pub mod types { } pub struct pthread_attr_t { - __size: [c_char, ..36] + __size: [u32, ..9] } } pub mod posix08 {} @@ -450,7 +450,7 @@ pub mod types { pub type ssize_t = i64; } pub mod posix01 { - use libc::types::os::arch::c95::{c_char, c_int, c_long, time_t}; + use libc::types::os::arch::c95::{c_int, c_long, time_t}; use libc::types::os::arch::posix88::{dev_t, gid_t, ino_t}; use libc::types::os::arch::posix88::{mode_t, off_t}; use libc::types::os::arch::posix88::{uid_t}; @@ -480,7 +480,7 @@ pub mod types { } pub struct pthread_attr_t { - __size: [c_char, ..56] + __size: [u64, ..7] } } pub mod posix08 {