Skip to content

Commit efaf730

Browse files
committed
auto merge of #10305 : thestinger/rust/align, r=alexcrichton
Closes #10300
2 parents b17d4e3 + 1c6ae5c commit efaf730

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/libstd/libc.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ pub mod types {
297297
}
298298
#[cfg(target_arch = "x86")]
299299
pub mod posix01 {
300-
use libc::types::os::arch::c95::{c_char, c_short, c_long, time_t};
300+
use libc::types::os::arch::c95::{c_short, c_long, time_t};
301301
use libc::types::os::arch::posix88::{dev_t, gid_t, ino_t};
302302
use libc::types::os::arch::posix88::{mode_t, off_t};
303303
use libc::types::os::arch::posix88::{uid_t};
@@ -330,12 +330,12 @@ pub mod types {
330330
}
331331

332332
pub struct pthread_attr_t {
333-
__size: [c_char, ..36]
333+
__size: [u32, ..9]
334334
}
335335
}
336336
#[cfg(target_arch = "arm")]
337337
pub mod posix01 {
338-
use libc::types::os::arch::c95::{c_char, c_uchar, c_uint, c_ulong, time_t};
338+
use libc::types::os::arch::c95::{c_uchar, c_uint, c_ulong, time_t};
339339
use libc::types::os::arch::c99::{c_longlong, c_ulonglong};
340340
use libc::types::os::arch::posix88::{uid_t, gid_t, ino_t};
341341

@@ -366,12 +366,12 @@ pub mod types {
366366
}
367367

368368
pub struct pthread_attr_t {
369-
__size: [c_char, ..36]
369+
__size: [u32, ..9]
370370
}
371371
}
372372
#[cfg(target_arch = "mips")]
373373
pub mod posix01 {
374-
use libc::types::os::arch::c95::{c_char, c_long, c_ulong, time_t};
374+
use libc::types::os::arch::c95::{c_long, c_ulong, time_t};
375375
use libc::types::os::arch::posix88::{gid_t, ino_t};
376376
use libc::types::os::arch::posix88::{mode_t, off_t};
377377
use libc::types::os::arch::posix88::{uid_t};
@@ -404,7 +404,7 @@ pub mod types {
404404
}
405405

406406
pub struct pthread_attr_t {
407-
__size: [c_char, ..36]
407+
__size: [u32, ..9]
408408
}
409409
}
410410
pub mod posix08 {}
@@ -450,7 +450,7 @@ pub mod types {
450450
pub type ssize_t = i64;
451451
}
452452
pub mod posix01 {
453-
use libc::types::os::arch::c95::{c_char, c_int, c_long, time_t};
453+
use libc::types::os::arch::c95::{c_int, c_long, time_t};
454454
use libc::types::os::arch::posix88::{dev_t, gid_t, ino_t};
455455
use libc::types::os::arch::posix88::{mode_t, off_t};
456456
use libc::types::os::arch::posix88::{uid_t};
@@ -480,7 +480,7 @@ pub mod types {
480480
}
481481

482482
pub struct pthread_attr_t {
483-
__size: [c_char, ..56]
483+
__size: [u64, ..7]
484484
}
485485
}
486486
pub mod posix08 {

0 commit comments

Comments
 (0)