Skip to content

Commit 135625d

Browse files
author
Jakub Wieczorek
committed
Mark relevant structs with repr(C)
1 parent f7d86b2 commit 135625d

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/libgreen/context.rs

+1
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ extern {
143143
// stacks are disabled.
144144

145145
#[cfg(target_arch = "x86")]
146+
#[repr(C)]
146147
struct Registers {
147148
eax: u32, ebx: u32, ecx: u32, edx: u32,
148149
ebp: u32, esi: u32, edi: u32, esp: u32,

src/libnative/io/c_win32.rs

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ pub static FIONBIO: libc::c_long = 0x8004667e;
2020
static FD_SETSIZE: uint = 64;
2121
pub static MSG_DONTWAIT: libc::c_int = 0;
2222

23+
#[repr(C)]
2324
pub struct WSADATA {
2425
pub wVersion: libc::WORD,
2526
pub wHighVersion: libc::WORD,
@@ -32,6 +33,7 @@ pub struct WSADATA {
3233

3334
pub type LPWSADATA = *mut WSADATA;
3435

36+
#[repr(C)]
3537
pub struct fd_set {
3638
fd_count: libc::c_uint,
3739
fd_array: [libc::SOCKET, ..FD_SETSIZE],

0 commit comments

Comments
 (0)