Skip to content

Commit b17f22d

Browse files
committed
Auto merge of #1517 - Wind-River:master_rebase, r=gnzlbg
updates for vxworks fix problems found in testing VxWorks socket and epoll definitions needed by mio and related crates; epoll only supported in VxWorks kernel; just provide stub definitions for user mode for now Fixed usage of isize libc VxWorks cleanups and additions remove copyright notice
2 parents 49c1d13 + 676d9fb commit b17f22d

File tree

8 files changed

+328
-239
lines changed

8 files changed

+328
-239
lines changed

src/vxworks/aarch64.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
pub type c_char = u8;
2+
pub type wchar_t = u32;
23
pub type c_long = i64;
34
pub type c_ulong = u64;

src/vxworks/arm.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
pub type c_char = u8;
2+
pub type wchar_t = u32;
23
pub type c_long = i32;
34
pub type c_ulong = u32;

src/vxworks/armv7.rs

-2
This file was deleted.

0 commit comments

Comments
 (0)