]> git.lizzy.rs Git - rust.git/blob - src/libstd/os/openbsd/raw.rs
Auto merge of #29995 - DanielJCampbell:Expanded-Span-Printing, r=nrc
[rust.git] / src / libstd / os / openbsd / raw.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! OpenBSD-specific raw type definitions
12
13 #![stable(feature = "raw_ext", since = "1.1.0")]
14
15 use os::raw::c_long;
16 use os::unix::raw::{uid_t, gid_t};
17
18 #[stable(feature = "raw_ext", since = "1.1.0")] pub type blkcnt_t = i64;
19 #[stable(feature = "raw_ext", since = "1.1.0")] pub type blksize_t = u32;
20 #[stable(feature = "raw_ext", since = "1.1.0")] pub type dev_t = i32;
21 #[stable(feature = "raw_ext", since = "1.1.0")] pub type fflags_t = u32;
22 #[stable(feature = "raw_ext", since = "1.1.0")] pub type ino_t = u64;
23 #[stable(feature = "raw_ext", since = "1.1.0")] pub type mode_t = u32;
24 #[stable(feature = "raw_ext", since = "1.1.0")] pub type nlink_t = u32;
25 #[stable(feature = "raw_ext", since = "1.1.0")] pub type off_t = i64;
26 #[stable(feature = "raw_ext", since = "1.1.0")] pub type time_t = i64;
27
28 #[unstable(feature = "pthread_t", issue = "29791")] pub type pthread_t = usize;
29
30 #[repr(C)]
31 #[derive(Clone)]
32 #[stable(feature = "raw_ext", since = "1.1.0")]
33 pub struct stat {
34     #[stable(feature = "raw_ext", since = "1.1.0")]
35     pub st_mode: mode_t,
36     #[stable(feature = "raw_ext", since = "1.1.0")]
37     pub st_dev: dev_t,
38     #[stable(feature = "raw_ext", since = "1.1.0")]
39     pub st_ino: ino_t,
40     #[stable(feature = "raw_ext", since = "1.1.0")]
41     pub st_nlink: nlink_t,
42     #[stable(feature = "raw_ext", since = "1.1.0")]
43     pub st_uid: uid_t,
44     #[stable(feature = "raw_ext", since = "1.1.0")]
45     pub st_gid: gid_t,
46     #[stable(feature = "raw_ext", since = "1.1.0")]
47     pub st_rdev: dev_t,
48     #[stable(feature = "raw_ext", since = "1.1.0")]
49     pub st_atime: time_t,
50     #[stable(feature = "raw_ext", since = "1.1.0")]
51     pub st_atime_nsec: c_long,
52     #[stable(feature = "raw_ext", since = "1.1.0")]
53     pub st_mtime: time_t,
54     #[stable(feature = "raw_ext", since = "1.1.0")]
55     pub st_mtime_nsec: c_long,
56     #[stable(feature = "raw_ext", since = "1.1.0")]
57     pub st_ctime: time_t,
58     #[stable(feature = "raw_ext", since = "1.1.0")]
59     pub st_ctime_nsec: c_long,
60     #[stable(feature = "raw_ext", since = "1.1.0")]
61     pub st_size: off_t,
62     #[stable(feature = "raw_ext", since = "1.1.0")]
63     pub st_blocks: blkcnt_t,
64     #[stable(feature = "raw_ext", since = "1.1.0")]
65     pub st_blksize: blksize_t,
66     #[stable(feature = "raw_ext", since = "1.1.0")]
67     pub st_flags: fflags_t,
68     #[stable(feature = "raw_ext", since = "1.1.0")]
69     pub st_gen: u32,
70     #[stable(feature = "raw_ext", since = "1.1.0")]
71     pub st_birthtime: time_t,
72     #[stable(feature = "raw_ext", since = "1.1.0")]
73     pub st_birthtime_nsec: c_long,
74 }