Skip to content

Commit 8ec1d21

Browse files
committed
Haiku: Fix pthread_t typesize set to stable 1.8.0 post #29791
1 parent 729ae39 commit 8ec1d21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/os/haiku/raw.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ use os::raw::{c_long};
1818
use os::unix::raw::{uid_t, gid_t};
1919

2020
// Use the direct definition of usize, instead of uintptr_t like in libc
21-
#[unstable(feature = "pthread_t", issue = "29791")] pub type pthread_t = usize;
21+
#[stable(feature = "pthread_t", since = "1.8.0")] pub type pthread_t = usize;
2222

2323
#[stable(feature = "raw_ext", since = "1.1.0")] pub type blkcnt_t = i64;
2424
#[stable(feature = "raw_ext", since = "1.1.0")] pub type blksize_t = i32;

0 commit comments

Comments
 (0)