Skip to content

Commit

Permalink
add intmax
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Orth committed Oct 12, 2014
1 parent 79d056f commit 3ff7a3d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/liblibc/lib.rs
Expand Up @@ -103,6 +103,7 @@ pub use types::os::arch::c95::{c_ushort, clock_t, ptrdiff_t, c_schar};
pub use types::os::arch::c95::{size_t, time_t, suseconds_t};
pub use types::os::arch::c99::{c_longlong, c_ulonglong};
pub use types::os::arch::c99::{intptr_t, uintptr_t};
pub use types::os::arch::c99::{intmax_t, uintmax_t};
pub use types::os::arch::posix88::{dev_t, ino_t, mode_t};
pub use types::os::arch::posix88::{off_t, pid_t, ssize_t};

Expand Down Expand Up @@ -533,6 +534,8 @@ pub mod types {
pub type c_ulonglong = u64;
pub type intptr_t = i32;
pub type uintptr_t = u32;
pub type intmax_t = i64;
pub type uintmax_t = u64;
}
#[cfg(any(target_arch = "x86",
target_arch = "mips",
Expand Down Expand Up @@ -740,6 +743,8 @@ pub mod types {
pub type c_ulonglong = u64;
pub type intptr_t = i64;
pub type uintptr_t = u64;
pub type intmax_t = i64;
pub type uintmax_t = u64;
}
pub mod posix88 {
pub type off_t = i64;
Expand Down Expand Up @@ -973,6 +978,8 @@ pub mod types {
pub type c_ulonglong = u64;
pub type intptr_t = i64;
pub type uintptr_t = u64;
pub type intmax_t = i64;
pub type uintmax_t = u64;
}
pub mod posix88 {
pub type off_t = i64;
Expand Down Expand Up @@ -1186,6 +1193,8 @@ pub mod types {
pub type c_ulonglong = u64;
pub type intptr_t = i64;
pub type uintptr_t = u64;
pub type intmax_t = i64;
pub type uintmax_t = u64;
}
pub mod posix88 {
pub type off_t = i64;
Expand Down Expand Up @@ -1426,6 +1435,9 @@ pub mod types {
pub type uintptr_t = u32;
#[cfg(target_arch = "x86_64")]
pub type uintptr_t = u64;

pub type intmax_t = i64;
pub type uintmax_t = u64;
}

pub mod posix88 {
Expand Down Expand Up @@ -1815,6 +1827,8 @@ pub mod types {
pub type c_ulonglong = u64;
pub type intptr_t = i32;
pub type uintptr_t = u32;
pub type intmax_t = i64;
pub type uintmax_t = u64;
}
pub mod posix88 {
pub type off_t = i64;
Expand Down Expand Up @@ -1916,6 +1930,8 @@ pub mod types {
pub type c_ulonglong = u64;
pub type intptr_t = i64;
pub type uintptr_t = u64;
pub type intmax_t = i64;
pub type uintmax_t = u64;
}
pub mod posix88 {
pub type off_t = i64;
Expand Down

12 comments on commit 3ff7a3d

@bors
Copy link
Contributor

@bors bors commented on 3ff7a3d Oct 23, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from alexcrichton
at mahkoh@3ff7a3d

@bors
Copy link
Contributor

@bors bors commented on 3ff7a3d Oct 23, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging mahkoh/rust/intmax = 3ff7a3d into auto

@bors
Copy link
Contributor

@bors bors commented on 3ff7a3d Oct 23, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mahkoh/rust/intmax = 3ff7a3d merged ok, testing candidate = 280d2935

@bors
Copy link
Contributor

@bors bors commented on 3ff7a3d Oct 24, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@alexcrichton
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cc @michaelwoerister

Looks like the LLDB tests timed out, and I think this happened once when landing the LLDB tests activation, so maybe something is afoot?

@bors
Copy link
Contributor

@bors bors commented on 3ff7a3d Oct 24, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from alexcrichton
at mahkoh@3ff7a3d

@bors
Copy link
Contributor

@bors bors commented on 3ff7a3d Oct 24, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging mahkoh/rust/intmax = 3ff7a3d into auto

@bors
Copy link
Contributor

@bors bors commented on 3ff7a3d Oct 24, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mahkoh/rust/intmax = 3ff7a3d merged ok, testing candidate = 00cc6d2

@bors
Copy link
Contributor

@bors bors commented on 3ff7a3d Oct 24, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on 3ff7a3d Oct 24, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 00cc6d2

@michaelwoerister
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@alexcrichton In the failed test run, the method-on-enum test case didn't finish. Let's watch this. If it's always the same test case that gets stuck, we know where to look. If not, it might get a bit trickier.

@alexcrichton
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting, the last failed test run had the method-on-enum test case pass.

Please sign in to comment.