diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-03-08 10:32:09 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-09 11:46:27 +0000 |
| commit | 9310d1531cbc03241d03ca4c089d46e058b10dc3 (patch) | |
| tree | 6ee67a7e64d0bb35b34299a82789ab69a616769a /meta/recipes-devtools/rust | |
| parent | 290b654a38e0e2ca1e3c48cb6e7a520332d6c91e (diff) | |
| download | poky-9310d1531cbc03241d03ca4c089d46e058b10dc3.tar.gz | |
rust: update 1.58.1 -> 1.59.0
Drop libstd-rs patches as they're merged upstream.
(From OE-Core rev: 05f4a09899aa8dbb22ef1adb494abac41d5b96b7)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/rust')
13 files changed, 17 insertions, 1624 deletions
diff --git a/meta/recipes-devtools/rust/libstd-rs/0001-Add-base-definitions-for-riscv64-musl.patch b/meta/recipes-devtools/rust/libstd-rs/0001-Add-base-definitions-for-riscv64-musl.patch deleted file mode 100644 index 5a36fefd21..0000000000 --- a/meta/recipes-devtools/rust/libstd-rs/0001-Add-base-definitions-for-riscv64-musl.patch +++ /dev/null | |||
| @@ -1,863 +0,0 @@ | |||
| 1 | From 8b86ecf87cf3589861b458f099572ad8487fc6cc Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Ralf Anton Beier <ralf_beier@me.com> | ||
| 3 | Date: Sun, 8 Aug 2021 11:05:06 +0200 | ||
| 4 | Subject: [PATCH 1/4] Add base definitions for riscv64 + musl | ||
| 5 | |||
| 6 | https://github.com/rust-lang/libc-0.2.106/pull/1994/commits/030a07761f61f3293d53752e60edbd330a9d718d | ||
| 7 | |||
| 8 | Upstream-Status: Submitted [https://github.com/rust-lang/libc-0.2.106/pull/2537] | ||
| 9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 10 | Signed-off-by: Ralf Anton Beier <ralf_beier@me.com> | ||
| 11 | --- | ||
| 12 | .../src/unix/linux_like/linux/musl/b64/mod.rs | 3 + | ||
| 13 | .../linux_like/linux/musl/b64/riscv64/mod.rs | 832 ++++++++++++++++++ | ||
| 14 | 2 files changed, 835 insertions(+) | ||
| 15 | create mode 100644 vendor/libc-0.2.106/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs | ||
| 16 | |||
| 17 | --- a/vendor/libc-0.2.106/src/unix/linux_like/linux/musl/b64/mod.rs | ||
| 18 | +++ b/vendor/libc-0.2.106/src/unix/linux_like/linux/musl/b64/mod.rs | ||
| 19 | @@ -163,6 +163,9 @@ cfg_if! { | ||
| 20 | } else if #[cfg(any(target_arch = "x86_64"))] { | ||
| 21 | mod x86_64; | ||
| 22 | pub use self::x86_64::*; | ||
| 23 | + } else if #[cfg(any(target_arch = "riscv64"))] { | ||
| 24 | + mod riscv64; | ||
| 25 | + pub use self::riscv64::*; | ||
| 26 | } else { | ||
| 27 | // Unknown target_arch | ||
| 28 | } | ||
| 29 | --- /dev/null | ||
| 30 | +++ b/vendor/libc-0.2.106/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs | ||
| 31 | @@ -0,0 +1,832 @@ | ||
| 32 | +//! RISC-V-specific definitions for 64-bit linux-like values | ||
| 33 | + | ||
| 34 | +pub type c_char = u8; | ||
| 35 | +pub type c_long = i64; | ||
| 36 | +pub type c_ulong = u64; | ||
| 37 | +pub type wchar_t = ::c_int; | ||
| 38 | + | ||
| 39 | +pub type nlink_t = ::c_uint; | ||
| 40 | +pub type blksize_t = ::c_int; | ||
| 41 | +pub type fsblkcnt64_t = ::c_ulong; | ||
| 42 | +pub type fsfilcnt64_t = ::c_ulong; | ||
| 43 | +pub type suseconds_t = i64; | ||
| 44 | +pub type __u64 = ::c_ulonglong; | ||
| 45 | + | ||
| 46 | +s! { | ||
| 47 | + pub struct pthread_attr_t { | ||
| 48 | + __size: [::c_ulong; 7], | ||
| 49 | + } | ||
| 50 | + | ||
| 51 | + pub struct stat { | ||
| 52 | + pub st_dev: ::dev_t, | ||
| 53 | + pub st_ino: ::ino_t, | ||
| 54 | + pub st_mode: ::mode_t, | ||
| 55 | + pub st_nlink: ::nlink_t, | ||
| 56 | + pub st_uid: ::uid_t, | ||
| 57 | + pub st_gid: ::gid_t, | ||
| 58 | + pub st_rdev: ::dev_t, | ||
| 59 | + pub __pad1: ::dev_t, | ||
| 60 | + pub st_size: ::off_t, | ||
| 61 | + pub st_blksize: ::blksize_t, | ||
| 62 | + pub __pad2: ::c_int, | ||
| 63 | + pub st_blocks: ::blkcnt_t, | ||
| 64 | + pub st_atime: ::time_t, | ||
| 65 | + pub st_atime_nsec: ::c_long, | ||
| 66 | + pub st_mtime: ::time_t, | ||
| 67 | + pub st_mtime_nsec: ::c_long, | ||
| 68 | + pub st_ctime: ::time_t, | ||
| 69 | + pub st_ctime_nsec: ::c_long, | ||
| 70 | + __unused: [::c_int; 2usize], | ||
| 71 | + } | ||
| 72 | + | ||
| 73 | + pub struct stat64 { | ||
| 74 | + pub st_dev: ::dev_t, | ||
| 75 | + pub st_ino: ::ino64_t, | ||
| 76 | + pub st_mode: ::mode_t, | ||
| 77 | + pub st_nlink: ::nlink_t, | ||
| 78 | + pub st_uid: ::uid_t, | ||
| 79 | + pub st_gid: ::gid_t, | ||
| 80 | + pub st_rdev: ::dev_t, | ||
| 81 | + pub __pad1: ::dev_t, | ||
| 82 | + pub st_size: ::off64_t, | ||
| 83 | + pub st_blksize: ::blksize_t, | ||
| 84 | + pub __pad2: ::c_int, | ||
| 85 | + pub st_blocks: ::blkcnt_t, | ||
| 86 | + pub st_atime: ::time_t, | ||
| 87 | + pub st_atime_nsec: ::c_long, | ||
| 88 | + pub st_mtime: ::time_t, | ||
| 89 | + pub st_mtime_nsec: ::c_long, | ||
| 90 | + pub st_ctime: ::time_t, | ||
| 91 | + pub st_ctime_nsec: ::c_long, | ||
| 92 | + __unused: [::c_int; 2], | ||
| 93 | + } | ||
| 94 | + | ||
| 95 | + pub struct statfs { | ||
| 96 | + pub f_type: ::c_long, | ||
| 97 | + pub f_bsize: ::c_long, | ||
| 98 | + pub f_blocks: ::fsblkcnt_t, | ||
| 99 | + pub f_bfree: ::fsblkcnt_t, | ||
| 100 | + pub f_bavail: ::fsblkcnt_t, | ||
| 101 | + pub f_files: ::fsfilcnt_t, | ||
| 102 | + pub f_ffree: ::fsfilcnt_t, | ||
| 103 | + pub f_fsid: ::fsid_t, | ||
| 104 | + pub f_namelen: ::c_long, | ||
| 105 | + pub f_frsize: ::c_long, | ||
| 106 | + pub f_flags: ::c_long, | ||
| 107 | + pub f_spare: [::c_long; 4], | ||
| 108 | + } | ||
| 109 | + | ||
| 110 | + pub struct statfs64 { | ||
| 111 | + pub f_type: ::c_long, | ||
| 112 | + pub f_bsize: ::c_long, | ||
| 113 | + pub f_blocks: ::fsblkcnt64_t, | ||
| 114 | + pub f_bfree: ::fsblkcnt64_t, | ||
| 115 | + pub f_bavail: ::fsblkcnt64_t, | ||
| 116 | + pub f_files: ::fsfilcnt64_t, | ||
| 117 | + pub f_ffree: ::fsfilcnt64_t, | ||
| 118 | + pub f_fsid: ::fsid_t, | ||
| 119 | + pub f_namelen: ::c_long, | ||
| 120 | + pub f_frsize: ::c_long, | ||
| 121 | + pub f_flags: ::c_long, | ||
| 122 | + pub f_spare: [::c_long; 4], | ||
| 123 | + } | ||
| 124 | + | ||
| 125 | + pub struct statvfs { | ||
| 126 | + pub f_bsize: ::c_ulong, | ||
| 127 | + pub f_frsize: ::c_ulong, | ||
| 128 | + pub f_blocks: ::fsblkcnt_t, | ||
| 129 | + pub f_bfree: ::fsblkcnt_t, | ||
| 130 | + pub f_bavail: ::fsblkcnt_t, | ||
| 131 | + pub f_files: ::fsfilcnt_t, | ||
| 132 | + pub f_ffree: ::fsfilcnt_t, | ||
| 133 | + pub f_favail: ::fsfilcnt_t, | ||
| 134 | + pub f_fsid: ::c_ulong, | ||
| 135 | + pub f_flag: ::c_ulong, | ||
| 136 | + pub f_namemax: ::c_ulong, | ||
| 137 | + pub __f_spare: [::c_int; 6], | ||
| 138 | + } | ||
| 139 | + | ||
| 140 | + pub struct statvfs64 { | ||
| 141 | + pub f_bsize: ::c_ulong, | ||
| 142 | + pub f_frsize: ::c_ulong, | ||
| 143 | + pub f_blocks: ::fsblkcnt64_t, | ||
| 144 | + pub f_bfree: ::fsblkcnt64_t, | ||
| 145 | + pub f_bavail: ::fsblkcnt64_t, | ||
| 146 | + pub f_files: ::fsfilcnt64_t, | ||
| 147 | + pub f_ffree: ::fsfilcnt64_t, | ||
| 148 | + pub f_favail: ::fsfilcnt64_t, | ||
| 149 | + pub f_fsid: ::c_ulong, | ||
| 150 | + pub f_flag: ::c_ulong, | ||
| 151 | + pub f_namemax: ::c_ulong, | ||
| 152 | + pub __f_spare: [::c_int; 6], | ||
| 153 | + } | ||
| 154 | + | ||
| 155 | + pub struct siginfo_t { | ||
| 156 | + pub si_signo: ::c_int, | ||
| 157 | + pub si_errno: ::c_int, | ||
| 158 | + pub si_code: ::c_int, | ||
| 159 | + #[doc(hidden)] | ||
| 160 | + #[deprecated( | ||
| 161 | + since="0.2.54", | ||
| 162 | + note="Please leave a comment on \ | ||
| 163 | + https://github.com/rust-lang/libc/pull/1316 if you're using \ | ||
| 164 | + this field" | ||
| 165 | + )] | ||
| 166 | + pub _pad: [::c_int; 29], | ||
| 167 | + _align: [u64; 0], | ||
| 168 | + } | ||
| 169 | + | ||
| 170 | + pub struct stack_t { | ||
| 171 | + pub ss_sp: *mut ::c_void, | ||
| 172 | + pub ss_flags: ::c_int, | ||
| 173 | + pub ss_size: ::size_t, | ||
| 174 | + } | ||
| 175 | + | ||
| 176 | + pub struct sigaction { | ||
| 177 | + pub sa_sigaction: ::sighandler_t, | ||
| 178 | + pub sa_mask: ::sigset_t, | ||
| 179 | + pub sa_flags: ::c_int, | ||
| 180 | + pub sa_restorer: ::Option<unsafe extern "C" fn()>, | ||
| 181 | + } | ||
| 182 | + | ||
| 183 | + pub struct ipc_perm { | ||
| 184 | + pub __key: ::key_t, | ||
| 185 | + pub uid: ::uid_t, | ||
| 186 | + pub gid: ::gid_t, | ||
| 187 | + pub cuid: ::uid_t, | ||
| 188 | + pub cgid: ::gid_t, | ||
| 189 | + pub mode: ::c_ushort, | ||
| 190 | + __pad1: ::c_ushort, | ||
| 191 | + pub __seq: ::c_ushort, | ||
| 192 | + __pad2: ::c_ushort, | ||
| 193 | + __unused1: ::c_ulong, | ||
| 194 | + __unused2: ::c_ulong, | ||
| 195 | + } | ||
| 196 | + | ||
| 197 | + pub struct shmid_ds { | ||
| 198 | + pub shm_perm: ::ipc_perm, | ||
| 199 | + pub shm_segsz: ::size_t, | ||
| 200 | + pub shm_atime: ::time_t, | ||
| 201 | + pub shm_dtime: ::time_t, | ||
| 202 | + pub shm_ctime: ::time_t, | ||
| 203 | + pub shm_cpid: ::pid_t, | ||
| 204 | + pub shm_lpid: ::pid_t, | ||
| 205 | + pub shm_nattch: ::shmatt_t, | ||
| 206 | + __unused5: ::c_ulong, | ||
| 207 | + __unused6: ::c_ulong, | ||
| 208 | + } | ||
| 209 | + | ||
| 210 | + pub struct flock { | ||
| 211 | + pub l_type: ::c_short, | ||
| 212 | + pub l_whence: ::c_short, | ||
| 213 | + pub l_start: ::off_t, | ||
| 214 | + pub l_len: ::off_t, | ||
| 215 | + pub l_pid: ::pid_t, | ||
| 216 | + } | ||
| 217 | + | ||
| 218 | + pub struct flock64 { | ||
| 219 | + pub l_type: ::c_short, | ||
| 220 | + pub l_whence: ::c_short, | ||
| 221 | + pub l_start: ::off64_t, | ||
| 222 | + pub l_len: ::off64_t, | ||
| 223 | + pub l_pid: ::pid_t, | ||
| 224 | + } | ||
| 225 | + | ||
| 226 | + pub struct ip_mreqn { | ||
| 227 | + pub imr_multiaddr: ::in_addr, | ||
| 228 | + pub imr_address: ::in_addr, | ||
| 229 | + pub imr_ifindex: ::c_int, | ||
| 230 | + } | ||
| 231 | +} | ||
| 232 | + | ||
| 233 | +pub const POSIX_FADV_DONTNEED: ::c_int = 4; | ||
| 234 | +pub const POSIX_FADV_NOREUSE: ::c_int = 5; | ||
| 235 | +pub const VEOF: usize = 4; | ||
| 236 | +pub const RTLD_DEEPBIND: ::c_int = 0x8; | ||
| 237 | +pub const RTLD_GLOBAL: ::c_int = 0x100; | ||
| 238 | +pub const RTLD_NOLOAD: ::c_int = 0x4; | ||
| 239 | +pub const TIOCGSOFTCAR: ::c_ulong = 21529; | ||
| 240 | +pub const TIOCSSOFTCAR: ::c_ulong = 21530; | ||
| 241 | +pub const TIOCGRS485: ::c_int = 21550; | ||
| 242 | +pub const TIOCSRS485: ::c_int = 21551; | ||
| 243 | +pub const RLIMIT_RSS: ::__rlimit_resource_t = 5; | ||
| 244 | +pub const RLIMIT_AS: ::__rlimit_resource_t = 9; | ||
| 245 | +pub const RLIMIT_MEMLOCK: ::__rlimit_resource_t = 8; | ||
| 246 | +pub const RLIMIT_NOFILE: ::__rlimit_resource_t = 7; | ||
| 247 | +pub const RLIMIT_NPROC: ::__rlimit_resource_t = 6; | ||
| 248 | +pub const O_APPEND: ::c_int = 1024; | ||
| 249 | +pub const O_CREAT: ::c_int = 64; | ||
| 250 | +pub const O_EXCL: ::c_int = 128; | ||
| 251 | +pub const O_NOCTTY: ::c_int = 256; | ||
| 252 | +pub const O_NONBLOCK: ::c_int = 2048; | ||
| 253 | +pub const O_SYNC: ::c_int = 1052672; | ||
| 254 | +pub const O_RSYNC: ::c_int = 1052672; | ||
| 255 | +pub const O_DSYNC: ::c_int = 4096; | ||
| 256 | +pub const O_FSYNC: ::c_int = 1052672; | ||
| 257 | +pub const O_NOATIME: ::c_int = 262144; | ||
| 258 | +pub const O_PATH: ::c_int = 2097152; | ||
| 259 | +pub const O_TMPFILE: ::c_int = 4259840; | ||
| 260 | +pub const MAP_GROWSDOWN: ::c_int = 256; | ||
| 261 | +pub const EDEADLK: ::c_int = 35; | ||
| 262 | +pub const ENAMETOOLONG: ::c_int = 36; | ||
| 263 | +pub const ENOLCK: ::c_int = 37; | ||
| 264 | +pub const ENOSYS: ::c_int = 38; | ||
| 265 | +pub const ENOTEMPTY: ::c_int = 39; | ||
| 266 | +pub const ELOOP: ::c_int = 40; | ||
| 267 | +pub const ENOMSG: ::c_int = 42; | ||
| 268 | +pub const EIDRM: ::c_int = 43; | ||
| 269 | +pub const ECHRNG: ::c_int = 44; | ||
| 270 | +pub const EL2NSYNC: ::c_int = 45; | ||
| 271 | +pub const EL3HLT: ::c_int = 46; | ||
| 272 | +pub const EL3RST: ::c_int = 47; | ||
| 273 | +pub const ELNRNG: ::c_int = 48; | ||
| 274 | +pub const EUNATCH: ::c_int = 49; | ||
| 275 | +pub const ENOCSI: ::c_int = 50; | ||
| 276 | +pub const EL2HLT: ::c_int = 51; | ||
| 277 | +pub const EBADE: ::c_int = 52; | ||
| 278 | +pub const EBADR: ::c_int = 53; | ||
| 279 | +pub const EXFULL: ::c_int = 54; | ||
| 280 | +pub const ENOANO: ::c_int = 55; | ||
| 281 | +pub const EBADRQC: ::c_int = 56; | ||
| 282 | +pub const EBADSLT: ::c_int = 57; | ||
| 283 | +pub const EMULTIHOP: ::c_int = 72; | ||
| 284 | +pub const EOVERFLOW: ::c_int = 75; | ||
| 285 | +pub const ENOTUNIQ: ::c_int = 76; | ||
| 286 | +pub const EBADFD: ::c_int = 77; | ||
| 287 | +pub const EBADMSG: ::c_int = 74; | ||
| 288 | +pub const EREMCHG: ::c_int = 78; | ||
| 289 | +pub const ELIBACC: ::c_int = 79; | ||
| 290 | +pub const ELIBBAD: ::c_int = 80; | ||
| 291 | +pub const ELIBSCN: ::c_int = 81; | ||
| 292 | +pub const ELIBMAX: ::c_int = 82; | ||
| 293 | +pub const ELIBEXEC: ::c_int = 83; | ||
| 294 | +pub const EILSEQ: ::c_int = 84; | ||
| 295 | +pub const ERESTART: ::c_int = 85; | ||
| 296 | +pub const ESTRPIPE: ::c_int = 86; | ||
| 297 | +pub const EUSERS: ::c_int = 87; | ||
| 298 | +pub const ENOTSOCK: ::c_int = 88; | ||
| 299 | +pub const EDESTADDRREQ: ::c_int = 89; | ||
| 300 | +pub const EMSGSIZE: ::c_int = 90; | ||
| 301 | +pub const EPROTOTYPE: ::c_int = 91; | ||
| 302 | +pub const ENOPROTOOPT: ::c_int = 92; | ||
| 303 | +pub const EPROTONOSUPPORT: ::c_int = 93; | ||
| 304 | +pub const ESOCKTNOSUPPORT: ::c_int = 94; | ||
| 305 | +pub const EOPNOTSUPP: ::c_int = 95; | ||
| 306 | +pub const EPFNOSUPPORT: ::c_int = 96; | ||
| 307 | +pub const EAFNOSUPPORT: ::c_int = 97; | ||
| 308 | +pub const EADDRINUSE: ::c_int = 98; | ||
| 309 | +pub const EADDRNOTAVAIL: ::c_int = 99; | ||
| 310 | +pub const ENETDOWN: ::c_int = 100; | ||
| 311 | +pub const ENETUNREACH: ::c_int = 101; | ||
| 312 | +pub const ENETRESET: ::c_int = 102; | ||
| 313 | +pub const ECONNABORTED: ::c_int = 103; | ||
| 314 | +pub const ECONNRESET: ::c_int = 104; | ||
| 315 | +pub const ENOBUFS: ::c_int = 105; | ||
| 316 | +pub const EISCONN: ::c_int = 106; | ||
| 317 | +pub const ENOTCONN: ::c_int = 107; | ||
| 318 | +pub const ESHUTDOWN: ::c_int = 108; | ||
| 319 | +pub const ETOOMANYREFS: ::c_int = 109; | ||
| 320 | +pub const ETIMEDOUT: ::c_int = 110; | ||
| 321 | +pub const ECONNREFUSED: ::c_int = 111; | ||
| 322 | +pub const EHOSTDOWN: ::c_int = 112; | ||
| 323 | +pub const EHOSTUNREACH: ::c_int = 113; | ||
| 324 | +pub const EALREADY: ::c_int = 114; | ||
| 325 | +pub const EINPROGRESS: ::c_int = 115; | ||
| 326 | +pub const ESTALE: ::c_int = 116; | ||
| 327 | +pub const EDQUOT: ::c_int = 122; | ||
| 328 | +pub const ENOMEDIUM: ::c_int = 123; | ||
| 329 | +pub const EMEDIUMTYPE: ::c_int = 124; | ||
| 330 | +pub const ECANCELED: ::c_int = 125; | ||
| 331 | +pub const ENOKEY: ::c_int = 126; | ||
| 332 | +pub const EKEYEXPIRED: ::c_int = 127; | ||
| 333 | +pub const EKEYREVOKED: ::c_int = 128; | ||
| 334 | +pub const EKEYREJECTED: ::c_int = 129; | ||
| 335 | +pub const EOWNERDEAD: ::c_int = 130; | ||
| 336 | +pub const ENOTRECOVERABLE: ::c_int = 131; | ||
| 337 | +pub const EHWPOISON: ::c_int = 133; | ||
| 338 | +pub const ERFKILL: ::c_int = 132; | ||
| 339 | + | ||
| 340 | +pub const SOCK_STREAM: ::c_int = 1; | ||
| 341 | +pub const SOCK_DGRAM: ::c_int = 2; | ||
| 342 | +pub const SA_ONSTACK: ::c_int = 134217728; | ||
| 343 | +pub const SA_SIGINFO: ::c_int = 4; | ||
| 344 | +pub const SA_NOCLDWAIT: ::c_int = 2; | ||
| 345 | +pub const SIGTTIN: ::c_int = 21; | ||
| 346 | +pub const SIGTTOU: ::c_int = 22; | ||
| 347 | +pub const SIGXCPU: ::c_int = 24; | ||
| 348 | +pub const SIGXFSZ: ::c_int = 25; | ||
| 349 | +pub const SIGVTALRM: ::c_int = 26; | ||
| 350 | +pub const SIGPROF: ::c_int = 27; | ||
| 351 | +pub const SIGWINCH: ::c_int = 28; | ||
| 352 | +pub const SIGCHLD: ::c_int = 17; | ||
| 353 | +pub const SIGBUS: ::c_int = 7; | ||
| 354 | +pub const SIGUSR1: ::c_int = 10; | ||
| 355 | +pub const SIGUSR2: ::c_int = 12; | ||
| 356 | +pub const SIGCONT: ::c_int = 18; | ||
| 357 | +pub const SIGSTOP: ::c_int = 19; | ||
| 358 | +pub const SIGTSTP: ::c_int = 20; | ||
| 359 | +pub const SIGURG: ::c_int = 23; | ||
| 360 | +pub const SIGIO: ::c_int = 29; | ||
| 361 | +pub const SIGSYS: ::c_int = 31; | ||
| 362 | +pub const SIGSTKFLT: ::c_int = 16; | ||
| 363 | +pub const SIGPOLL: ::c_int = 29; | ||
| 364 | +pub const SIGPWR: ::c_int = 30; | ||
| 365 | +pub const SIG_SETMASK: ::c_int = 2; | ||
| 366 | +pub const SIG_BLOCK: ::c_int = 0; | ||
| 367 | +pub const SIG_UNBLOCK: ::c_int = 1; | ||
| 368 | +pub const POLLWRNORM: ::c_short = 256; | ||
| 369 | +pub const POLLWRBAND: ::c_short = 512; | ||
| 370 | +pub const O_ASYNC: ::c_int = 8192; | ||
| 371 | +pub const O_NDELAY: ::c_int = 2048; | ||
| 372 | +pub const PTRACE_DETACH: ::c_uint = 17; | ||
| 373 | +pub const EFD_NONBLOCK: ::c_int = 2048; | ||
| 374 | +pub const F_GETLK: ::c_int = 5; | ||
| 375 | +pub const F_GETOWN: ::c_int = 9; | ||
| 376 | +pub const F_SETOWN: ::c_int = 8; | ||
| 377 | +pub const F_SETLK: ::c_int = 6; | ||
| 378 | +pub const F_SETLKW: ::c_int = 7; | ||
| 379 | +pub const F_RDLCK: ::c_int = 0; | ||
| 380 | +pub const F_WRLCK: ::c_int = 1; | ||
| 381 | +pub const F_UNLCK: ::c_int = 2; | ||
| 382 | +pub const F_OFD_GETLK: ::c_int = 36; | ||
| 383 | +pub const F_OFD_SETLK: ::c_int = 37; | ||
| 384 | +pub const F_OFD_SETLKW: ::c_int = 38; | ||
| 385 | +pub const SFD_NONBLOCK: ::c_int = 2048; | ||
| 386 | +pub const TCSANOW: ::c_int = 0; | ||
| 387 | +pub const TCSADRAIN: ::c_int = 1; | ||
| 388 | +pub const TCSAFLUSH: ::c_int = 2; | ||
| 389 | +pub const TIOCLINUX: ::c_ulong = 21532; | ||
| 390 | +pub const TIOCGSERIAL: ::c_ulong = 21534; | ||
| 391 | +pub const TIOCEXCL: ::c_ulong = 21516; | ||
| 392 | +pub const TIOCNXCL: ::c_ulong = 21517; | ||
| 393 | +pub const TIOCSCTTY: ::c_ulong = 21518; | ||
| 394 | +pub const TIOCSTI: ::c_ulong = 21522; | ||
| 395 | +pub const TIOCMGET: ::c_ulong = 21525; | ||
| 396 | +pub const TIOCMBIS: ::c_ulong = 21526; | ||
| 397 | +pub const TIOCMBIC: ::c_ulong = 21527; | ||
| 398 | +pub const TIOCMSET: ::c_ulong = 21528; | ||
| 399 | +pub const TIOCCONS: ::c_ulong = 21533; | ||
| 400 | +pub const TIOCM_ST: ::c_int = 8; | ||
| 401 | +pub const TIOCM_SR: ::c_int = 16; | ||
| 402 | +pub const TIOCM_CTS: ::c_int = 32; | ||
| 403 | +pub const TIOCM_CAR: ::c_int = 64; | ||
| 404 | +pub const TIOCM_RNG: ::c_int = 128; | ||
| 405 | +pub const TIOCM_DSR: ::c_int = 256; | ||
| 406 | +pub const SFD_CLOEXEC: ::c_int = 524288; | ||
| 407 | +pub const NCCS: usize = 32; | ||
| 408 | +pub const O_TRUNC: ::c_int = 512; | ||
| 409 | +pub const O_CLOEXEC: ::c_int = 524288; | ||
| 410 | +pub const EBFONT: ::c_int = 59; | ||
| 411 | +pub const ENOSTR: ::c_int = 60; | ||
| 412 | +pub const ENODATA: ::c_int = 61; | ||
| 413 | +pub const ETIME: ::c_int = 62; | ||
| 414 | +pub const ENOSR: ::c_int = 63; | ||
| 415 | +pub const ENONET: ::c_int = 64; | ||
| 416 | +pub const ENOPKG: ::c_int = 65; | ||
| 417 | +pub const EREMOTE: ::c_int = 66; | ||
| 418 | +pub const ENOLINK: ::c_int = 67; | ||
| 419 | +pub const EADV: ::c_int = 68; | ||
| 420 | +pub const ESRMNT: ::c_int = 69; | ||
| 421 | +pub const ECOMM: ::c_int = 70; | ||
| 422 | +pub const EPROTO: ::c_int = 71; | ||
| 423 | +pub const EDOTDOT: ::c_int = 73; | ||
| 424 | +pub const SA_NODEFER: ::c_int = 1073741824; | ||
| 425 | +pub const SA_RESETHAND: ::c_int = -2147483648; | ||
| 426 | +pub const SA_RESTART: ::c_int = 268435456; | ||
| 427 | +pub const SA_NOCLDSTOP: ::c_int = 1; | ||
| 428 | +pub const EPOLL_CLOEXEC: ::c_int = 524288; | ||
| 429 | +pub const EFD_CLOEXEC: ::c_int = 524288; | ||
| 430 | +pub const __SIZEOF_PTHREAD_CONDATTR_T: usize = 4; | ||
| 431 | +pub const __SIZEOF_PTHREAD_MUTEXATTR_T: usize = 4; | ||
| 432 | +pub const O_DIRECT: ::c_int = 16384; | ||
| 433 | +pub const O_DIRECTORY: ::c_int = 65536; | ||
| 434 | +pub const O_NOFOLLOW: ::c_int = 131072; | ||
| 435 | +pub const MAP_HUGETLB: ::c_int = 262144; | ||
| 436 | +pub const MAP_LOCKED: ::c_int = 8192; | ||
| 437 | +pub const MAP_NORESERVE: ::c_int = 16384; | ||
| 438 | +pub const MAP_ANON: ::c_int = 32; | ||
| 439 | +pub const MAP_ANONYMOUS: ::c_int = 32; | ||
| 440 | +pub const MAP_DENYWRITE: ::c_int = 2048; | ||
| 441 | +pub const MAP_EXECUTABLE: ::c_int = 4096; | ||
| 442 | +pub const MAP_POPULATE: ::c_int = 32768; | ||
| 443 | +pub const MAP_NONBLOCK: ::c_int = 65536; | ||
| 444 | +pub const MAP_STACK: ::c_int = 131072; | ||
| 445 | +pub const MAP_SYNC: ::c_int = 0x080000; | ||
| 446 | +pub const EDEADLOCK: ::c_int = 35; | ||
| 447 | +pub const EUCLEAN: ::c_int = 117; | ||
| 448 | +pub const ENOTNAM: ::c_int = 118; | ||
| 449 | +pub const ENAVAIL: ::c_int = 119; | ||
| 450 | +pub const EISNAM: ::c_int = 120; | ||
| 451 | +pub const EREMOTEIO: ::c_int = 121; | ||
| 452 | +pub const FIOCLEX: ::c_ulong = 21585; | ||
| 453 | +pub const FIONCLEX: ::c_ulong = 21584; | ||
| 454 | +pub const FIONBIO: ::c_ulong = 21537; | ||
| 455 | +pub const MCL_CURRENT: ::c_int = 1; | ||
| 456 | +pub const MCL_FUTURE: ::c_int = 2; | ||
| 457 | +pub const SIGSTKSZ: ::size_t = 8192; | ||
| 458 | +pub const MINSIGSTKSZ: ::size_t = 2048; | ||
| 459 | +pub const CBAUD: ::tcflag_t = 4111; | ||
| 460 | +pub const TAB1: ::tcflag_t = 2048; | ||
| 461 | +pub const TAB2: ::tcflag_t = 4096; | ||
| 462 | +pub const TAB3: ::tcflag_t = 6144; | ||
| 463 | +pub const CR1: ::tcflag_t = 512; | ||
| 464 | +pub const CR2: ::tcflag_t = 1024; | ||
| 465 | +pub const CR3: ::tcflag_t = 1536; | ||
| 466 | +pub const FF1: ::tcflag_t = 32768; | ||
| 467 | +pub const BS1: ::tcflag_t = 8192; | ||
| 468 | +pub const VT1: ::tcflag_t = 16384; | ||
| 469 | +pub const VWERASE: usize = 14; | ||
| 470 | +pub const VREPRINT: usize = 12; | ||
| 471 | +pub const VSUSP: usize = 10; | ||
| 472 | +pub const VSTART: usize = 8; | ||
| 473 | +pub const VSTOP: usize = 9; | ||
| 474 | +pub const VDISCARD: usize = 13; | ||
| 475 | +pub const VTIME: usize = 5; | ||
| 476 | +pub const IXON: ::tcflag_t = 1024; | ||
| 477 | +pub const IXOFF: ::tcflag_t = 4096; | ||
| 478 | +pub const ONLCR: ::tcflag_t = 4; | ||
| 479 | +pub const CSIZE: ::tcflag_t = 48; | ||
| 480 | +pub const CS6: ::tcflag_t = 16; | ||
| 481 | +pub const CS7: ::tcflag_t = 32; | ||
| 482 | +pub const CS8: ::tcflag_t = 48; | ||
| 483 | +pub const CSTOPB: ::tcflag_t = 64; | ||
| 484 | +pub const CREAD: ::tcflag_t = 128; | ||
| 485 | +pub const PARENB: ::tcflag_t = 256; | ||
| 486 | +pub const PARODD: ::tcflag_t = 512; | ||
| 487 | +pub const HUPCL: ::tcflag_t = 1024; | ||
| 488 | +pub const CLOCAL: ::tcflag_t = 2048; | ||
| 489 | +pub const ECHOKE: ::tcflag_t = 2048; | ||
| 490 | +pub const ECHOE: ::tcflag_t = 16; | ||
| 491 | +pub const ECHOK: ::tcflag_t = 32; | ||
| 492 | +pub const ECHONL: ::tcflag_t = 64; | ||
| 493 | +pub const ECHOPRT: ::tcflag_t = 1024; | ||
| 494 | +pub const ECHOCTL: ::tcflag_t = 512; | ||
| 495 | +pub const ISIG: ::tcflag_t = 1; | ||
| 496 | +pub const ICANON: ::tcflag_t = 2; | ||
| 497 | +pub const PENDIN: ::tcflag_t = 16384; | ||
| 498 | +pub const NOFLSH: ::tcflag_t = 128; | ||
| 499 | +pub const CIBAUD: ::tcflag_t = 269418496; | ||
| 500 | +pub const CBAUDEX: ::tcflag_t = 4096; | ||
| 501 | +pub const VSWTC: usize = 7; | ||
| 502 | +pub const OLCUC: ::tcflag_t = 2; | ||
| 503 | +pub const NLDLY: ::tcflag_t = 256; | ||
| 504 | +pub const CRDLY: ::tcflag_t = 1536; | ||
| 505 | +pub const TABDLY: ::tcflag_t = 6144; | ||
| 506 | +pub const BSDLY: ::tcflag_t = 8192; | ||
| 507 | +pub const FFDLY: ::tcflag_t = 32768; | ||
| 508 | +pub const VTDLY: ::tcflag_t = 16384; | ||
| 509 | +pub const XTABS: ::tcflag_t = 6144; | ||
| 510 | +pub const B0: ::speed_t = 0; | ||
| 511 | +pub const B50: ::speed_t = 1; | ||
| 512 | +pub const B75: ::speed_t = 2; | ||
| 513 | +pub const B110: ::speed_t = 3; | ||
| 514 | +pub const B134: ::speed_t = 4; | ||
| 515 | +pub const B150: ::speed_t = 5; | ||
| 516 | +pub const B200: ::speed_t = 6; | ||
| 517 | +pub const B300: ::speed_t = 7; | ||
| 518 | +pub const B600: ::speed_t = 8; | ||
| 519 | +pub const B1200: ::speed_t = 9; | ||
| 520 | +pub const B1800: ::speed_t = 10; | ||
| 521 | +pub const B2400: ::speed_t = 11; | ||
| 522 | +pub const B4800: ::speed_t = 12; | ||
| 523 | +pub const B9600: ::speed_t = 13; | ||
| 524 | +pub const B19200: ::speed_t = 14; | ||
| 525 | +pub const B38400: ::speed_t = 15; | ||
| 526 | +pub const EXTA: ::speed_t = 14; | ||
| 527 | +pub const EXTB: ::speed_t = 15; | ||
| 528 | +pub const B57600: ::speed_t = 4097; | ||
| 529 | +pub const B115200: ::speed_t = 4098; | ||
| 530 | +pub const B230400: ::speed_t = 4099; | ||
| 531 | +pub const B460800: ::speed_t = 4100; | ||
| 532 | +pub const B500000: ::speed_t = 4101; | ||
| 533 | +pub const B576000: ::speed_t = 4102; | ||
| 534 | +pub const B921600: ::speed_t = 4103; | ||
| 535 | +pub const B1000000: ::speed_t = 4104; | ||
| 536 | +pub const B1152000: ::speed_t = 4105; | ||
| 537 | +pub const B1500000: ::speed_t = 4106; | ||
| 538 | +pub const B2000000: ::speed_t = 4107; | ||
| 539 | +pub const B2500000: ::speed_t = 4108; | ||
| 540 | +pub const B3000000: ::speed_t = 4109; | ||
| 541 | +pub const B3500000: ::speed_t = 4110; | ||
| 542 | +pub const B4000000: ::speed_t = 4111; | ||
| 543 | +pub const VEOL: usize = 11; | ||
| 544 | +pub const VEOL2: usize = 16; | ||
| 545 | +pub const VMIN: usize = 6; | ||
| 546 | +pub const IEXTEN: ::tcflag_t = 32768; | ||
| 547 | +pub const TOSTOP: ::tcflag_t = 256; | ||
| 548 | +pub const FLUSHO: ::tcflag_t = 4096; | ||
| 549 | +pub const EXTPROC: ::tcflag_t = 65536; | ||
| 550 | +pub const TCGETS: ::c_ulong = 21505; | ||
| 551 | +pub const TCSETS: ::c_ulong = 21506; | ||
| 552 | +pub const TCSETSW: ::c_ulong = 21507; | ||
| 553 | +pub const TCSETSF: ::c_ulong = 21508; | ||
| 554 | +pub const TCGETA: ::c_ulong = 21509; | ||
| 555 | +pub const TCSETA: ::c_ulong = 21510; | ||
| 556 | +pub const TCSETAW: ::c_ulong = 21511; | ||
| 557 | +pub const TCSETAF: ::c_ulong = 21512; | ||
| 558 | +pub const TCSBRK: ::c_ulong = 21513; | ||
| 559 | +pub const TCXONC: ::c_ulong = 21514; | ||
| 560 | +pub const TCFLSH: ::c_ulong = 21515; | ||
| 561 | +pub const TIOCINQ: ::c_ulong = 21531; | ||
| 562 | +pub const TIOCGPGRP: ::c_ulong = 21519; | ||
| 563 | +pub const TIOCSPGRP: ::c_ulong = 21520; | ||
| 564 | +pub const TIOCOUTQ: ::c_ulong = 21521; | ||
| 565 | +pub const TIOCGWINSZ: ::c_ulong = 21523; | ||
| 566 | +pub const TIOCSWINSZ: ::c_ulong = 21524; | ||
| 567 | +pub const FIONREAD: ::c_ulong = 21531; | ||
| 568 | +pub const __SIZEOF_PTHREAD_MUTEX_T: usize = 40; | ||
| 569 | +pub const __SIZEOF_PTHREAD_RWLOCK_T: usize = 56; | ||
| 570 | +pub const SYS_read: ::c_long = 63; | ||
| 571 | +pub const SYS_write: ::c_long = 64; | ||
| 572 | +pub const SYS_close: ::c_long = 57; | ||
| 573 | +pub const SYS_fstat: ::c_long = 80; | ||
| 574 | +pub const SYS_lseek: ::c_long = 62; | ||
| 575 | +pub const SYS_mmap: ::c_long = 222; | ||
| 576 | +pub const SYS_mprotect: ::c_long = 226; | ||
| 577 | +pub const SYS_munmap: ::c_long = 215; | ||
| 578 | +pub const SYS_brk: ::c_long = 214; | ||
| 579 | +pub const SYS_rt_sigaction: ::c_long = 134; | ||
| 580 | +pub const SYS_rt_sigprocmask: ::c_long = 135; | ||
| 581 | +pub const SYS_rt_sigreturn: ::c_long = 139; | ||
| 582 | +pub const SYS_ioctl: ::c_long = 29; | ||
| 583 | +pub const SYS_pread64: ::c_long = 67; | ||
| 584 | +pub const SYS_pwrite64: ::c_long = 68; | ||
| 585 | +pub const SYS_readv: ::c_long = 65; | ||
| 586 | +pub const SYS_writev: ::c_long = 66; | ||
| 587 | +pub const SYS_sched_yield: ::c_long = 124; | ||
| 588 | +pub const SYS_mremap: ::c_long = 216; | ||
| 589 | +pub const SYS_msync: ::c_long = 227; | ||
| 590 | +pub const SYS_mincore: ::c_long = 232; | ||
| 591 | +pub const SYS_madvise: ::c_long = 233; | ||
| 592 | +pub const SYS_shmget: ::c_long = 194; | ||
| 593 | +pub const SYS_shmat: ::c_long = 196; | ||
| 594 | +pub const SYS_shmctl: ::c_long = 195; | ||
| 595 | +pub const SYS_dup: ::c_long = 23; | ||
| 596 | +pub const SYS_nanosleep: ::c_long = 101; | ||
| 597 | +pub const SYS_getitimer: ::c_long = 102; | ||
| 598 | +pub const SYS_setitimer: ::c_long = 103; | ||
| 599 | +pub const SYS_getpid: ::c_long = 172; | ||
| 600 | +pub const SYS_sendfile: ::c_long = 71; | ||
| 601 | +pub const SYS_socket: ::c_long = 198; | ||
| 602 | +pub const SYS_connect: ::c_long = 203; | ||
| 603 | +pub const SYS_accept: ::c_long = 202; | ||
| 604 | +pub const SYS_sendto: ::c_long = 206; | ||
| 605 | +pub const SYS_recvfrom: ::c_long = 207; | ||
| 606 | +pub const SYS_sendmsg: ::c_long = 211; | ||
| 607 | +pub const SYS_recvmsg: ::c_long = 212; | ||
| 608 | +pub const SYS_shutdown: ::c_long = 210; | ||
| 609 | +pub const SYS_bind: ::c_long = 200; | ||
| 610 | +pub const SYS_listen: ::c_long = 201; | ||
| 611 | +pub const SYS_getsockname: ::c_long = 204; | ||
| 612 | +pub const SYS_getpeername: ::c_long = 205; | ||
| 613 | +pub const SYS_socketpair: ::c_long = 199; | ||
| 614 | +pub const SYS_setsockopt: ::c_long = 208; | ||
| 615 | +pub const SYS_getsockopt: ::c_long = 209; | ||
| 616 | +pub const SYS_clone: ::c_long = 220; | ||
| 617 | +pub const SYS_execve: ::c_long = 221; | ||
| 618 | +pub const SYS_exit: ::c_long = 93; | ||
| 619 | +pub const SYS_wait4: ::c_long = 260; | ||
| 620 | +pub const SYS_kill: ::c_long = 129; | ||
| 621 | +pub const SYS_uname: ::c_long = 160; | ||
| 622 | +pub const SYS_semget: ::c_long = 190; | ||
| 623 | +pub const SYS_semop: ::c_long = 193; | ||
| 624 | +pub const SYS_semctl: ::c_long = 191; | ||
| 625 | +pub const SYS_shmdt: ::c_long = 197; | ||
| 626 | +pub const SYS_msgget: ::c_long = 186; | ||
| 627 | +pub const SYS_msgsnd: ::c_long = 189; | ||
| 628 | +pub const SYS_msgrcv: ::c_long = 188; | ||
| 629 | +pub const SYS_msgctl: ::c_long = 187; | ||
| 630 | +pub const SYS_fcntl: ::c_long = 25; | ||
| 631 | +pub const SYS_flock: ::c_long = 32; | ||
| 632 | +pub const SYS_fsync: ::c_long = 82; | ||
| 633 | +pub const SYS_fdatasync: ::c_long = 83; | ||
| 634 | +pub const SYS_truncate: ::c_long = 45; | ||
| 635 | +pub const SYS_ftruncate: ::c_long = 46; | ||
| 636 | +pub const SYS_getcwd: ::c_long = 17; | ||
| 637 | +pub const SYS_chdir: ::c_long = 49; | ||
| 638 | +pub const SYS_fchdir: ::c_long = 50; | ||
| 639 | +pub const SYS_fchmod: ::c_long = 52; | ||
| 640 | +pub const SYS_fchown: ::c_long = 55; | ||
| 641 | +pub const SYS_umask: ::c_long = 166; | ||
| 642 | +pub const SYS_gettimeofday: ::c_long = 169; | ||
| 643 | +pub const SYS_getrlimit: ::c_long = 163; | ||
| 644 | +pub const SYS_getrusage: ::c_long = 165; | ||
| 645 | +pub const SYS_sysinfo: ::c_long = 179; | ||
| 646 | +pub const SYS_times: ::c_long = 153; | ||
| 647 | +pub const SYS_ptrace: ::c_long = 117; | ||
| 648 | +pub const SYS_getuid: ::c_long = 174; | ||
| 649 | +pub const SYS_syslog: ::c_long = 116; | ||
| 650 | +pub const SYS_getgid: ::c_long = 176; | ||
| 651 | +pub const SYS_setuid: ::c_long = 146; | ||
| 652 | +pub const SYS_setgid: ::c_long = 144; | ||
| 653 | +pub const SYS_geteuid: ::c_long = 175; | ||
| 654 | +pub const SYS_getegid: ::c_long = 177; | ||
| 655 | +pub const SYS_setpgid: ::c_long = 154; | ||
| 656 | +pub const SYS_getppid: ::c_long = 173; | ||
| 657 | +pub const SYS_setsid: ::c_long = 157; | ||
| 658 | +pub const SYS_setreuid: ::c_long = 145; | ||
| 659 | +pub const SYS_setregid: ::c_long = 143; | ||
| 660 | +pub const SYS_getgroups: ::c_long = 158; | ||
| 661 | +pub const SYS_setgroups: ::c_long = 159; | ||
| 662 | +pub const SYS_setresuid: ::c_long = 147; | ||
| 663 | +pub const SYS_getresuid: ::c_long = 148; | ||
| 664 | +pub const SYS_setresgid: ::c_long = 149; | ||
| 665 | +pub const SYS_getresgid: ::c_long = 150; | ||
| 666 | +pub const SYS_getpgid: ::c_long = 155; | ||
| 667 | +pub const SYS_setfsuid: ::c_long = 151; | ||
| 668 | +pub const SYS_setfsgid: ::c_long = 152; | ||
| 669 | +pub const SYS_getsid: ::c_long = 156; | ||
| 670 | +pub const SYS_capget: ::c_long = 90; | ||
| 671 | +pub const SYS_capset: ::c_long = 91; | ||
| 672 | +pub const SYS_rt_sigpending: ::c_long = 136; | ||
| 673 | +pub const SYS_rt_sigtimedwait: ::c_long = 137; | ||
| 674 | +pub const SYS_rt_sigqueueinfo: ::c_long = 138; | ||
| 675 | +pub const SYS_rt_sigsuspend: ::c_long = 133; | ||
| 676 | +pub const SYS_sigaltstack: ::c_long = 132; | ||
| 677 | +pub const SYS_personality: ::c_long = 92; | ||
| 678 | +pub const SYS_statfs: ::c_long = 43; | ||
| 679 | +pub const SYS_fstatfs: ::c_long = 44; | ||
| 680 | +pub const SYS_getpriority: ::c_long = 141; | ||
| 681 | +pub const SYS_setpriority: ::c_long = 140; | ||
| 682 | +pub const SYS_sched_setparam: ::c_long = 118; | ||
| 683 | +pub const SYS_sched_getparam: ::c_long = 121; | ||
| 684 | +pub const SYS_sched_setscheduler: ::c_long = 119; | ||
| 685 | +pub const SYS_sched_getscheduler: ::c_long = 120; | ||
| 686 | +pub const SYS_sched_get_priority_max: ::c_long = 125; | ||
| 687 | +pub const SYS_sched_get_priority_min: ::c_long = 126; | ||
| 688 | +pub const SYS_sched_rr_get_interval: ::c_long = 127; | ||
| 689 | +pub const SYS_mlock: ::c_long = 228; | ||
| 690 | +pub const SYS_munlock: ::c_long = 229; | ||
| 691 | +pub const SYS_mlockall: ::c_long = 230; | ||
| 692 | +pub const SYS_munlockall: ::c_long = 231; | ||
| 693 | +pub const SYS_vhangup: ::c_long = 58; | ||
| 694 | +pub const SYS_pivot_root: ::c_long = 41; | ||
| 695 | +pub const SYS_prctl: ::c_long = 167; | ||
| 696 | +pub const SYS_adjtimex: ::c_long = 171; | ||
| 697 | +pub const SYS_setrlimit: ::c_long = 164; | ||
| 698 | +pub const SYS_chroot: ::c_long = 51; | ||
| 699 | +pub const SYS_sync: ::c_long = 81; | ||
| 700 | +pub const SYS_acct: ::c_long = 89; | ||
| 701 | +pub const SYS_settimeofday: ::c_long = 170; | ||
| 702 | +pub const SYS_mount: ::c_long = 40; | ||
| 703 | +pub const SYS_umount2: ::c_long = 39; | ||
| 704 | +pub const SYS_swapon: ::c_long = 224; | ||
| 705 | +pub const SYS_swapoff: ::c_long = 225; | ||
| 706 | +pub const SYS_reboot: ::c_long = 142; | ||
| 707 | +pub const SYS_sethostname: ::c_long = 161; | ||
| 708 | +pub const SYS_setdomainname: ::c_long = 162; | ||
| 709 | +pub const SYS_init_module: ::c_long = 105; | ||
| 710 | +pub const SYS_delete_module: ::c_long = 106; | ||
| 711 | +pub const SYS_quotactl: ::c_long = 60; | ||
| 712 | +pub const SYS_nfsservctl: ::c_long = 42; | ||
| 713 | +pub const SYS_gettid: ::c_long = 178; | ||
| 714 | +pub const SYS_readahead: ::c_long = 213; | ||
| 715 | +pub const SYS_setxattr: ::c_long = 5; | ||
| 716 | +pub const SYS_lsetxattr: ::c_long = 6; | ||
| 717 | +pub const SYS_fsetxattr: ::c_long = 7; | ||
| 718 | +pub const SYS_getxattr: ::c_long = 8; | ||
| 719 | +pub const SYS_lgetxattr: ::c_long = 9; | ||
| 720 | +pub const SYS_fgetxattr: ::c_long = 10; | ||
| 721 | +pub const SYS_listxattr: ::c_long = 11; | ||
| 722 | +pub const SYS_llistxattr: ::c_long = 12; | ||
| 723 | +pub const SYS_flistxattr: ::c_long = 13; | ||
| 724 | +pub const SYS_removexattr: ::c_long = 14; | ||
| 725 | +pub const SYS_lremovexattr: ::c_long = 15; | ||
| 726 | +pub const SYS_fremovexattr: ::c_long = 16; | ||
| 727 | +pub const SYS_tkill: ::c_long = 130; | ||
| 728 | +pub const SYS_futex: ::c_long = 98; | ||
| 729 | +pub const SYS_sched_setaffinity: ::c_long = 122; | ||
| 730 | +pub const SYS_sched_getaffinity: ::c_long = 123; | ||
| 731 | +pub const SYS_io_setup: ::c_long = 0; | ||
| 732 | +pub const SYS_io_destroy: ::c_long = 1; | ||
| 733 | +pub const SYS_io_getevents: ::c_long = 4; | ||
| 734 | +pub const SYS_io_submit: ::c_long = 2; | ||
| 735 | +pub const SYS_io_cancel: ::c_long = 3; | ||
| 736 | +pub const SYS_lookup_dcookie: ::c_long = 18; | ||
| 737 | +pub const SYS_remap_file_pages: ::c_long = 234; | ||
| 738 | +pub const SYS_getdents64: ::c_long = 61; | ||
| 739 | +pub const SYS_set_tid_address: ::c_long = 96; | ||
| 740 | +pub const SYS_restart_syscall: ::c_long = 128; | ||
| 741 | +pub const SYS_semtimedop: ::c_long = 192; | ||
| 742 | +pub const SYS_fadvise64: ::c_long = 223; | ||
| 743 | +pub const SYS_timer_create: ::c_long = 107; | ||
| 744 | +pub const SYS_timer_settime: ::c_long = 110; | ||
| 745 | +pub const SYS_timer_gettime: ::c_long = 108; | ||
| 746 | +pub const SYS_timer_getoverrun: ::c_long = 109; | ||
| 747 | +pub const SYS_timer_delete: ::c_long = 111; | ||
| 748 | +pub const SYS_clock_settime: ::c_long = 112; | ||
| 749 | +pub const SYS_clock_gettime: ::c_long = 113; | ||
| 750 | +pub const SYS_clock_getres: ::c_long = 114; | ||
| 751 | +pub const SYS_clock_nanosleep: ::c_long = 115; | ||
| 752 | +pub const SYS_exit_group: ::c_long = 94; | ||
| 753 | +pub const SYS_epoll_ctl: ::c_long = 21; | ||
| 754 | +pub const SYS_tgkill: ::c_long = 131; | ||
| 755 | +pub const SYS_mbind: ::c_long = 235; | ||
| 756 | +pub const SYS_set_mempolicy: ::c_long = 237; | ||
| 757 | +pub const SYS_get_mempolicy: ::c_long = 236; | ||
| 758 | +pub const SYS_mq_open: ::c_long = 180; | ||
| 759 | +pub const SYS_mq_unlink: ::c_long = 181; | ||
| 760 | +pub const SYS_mq_timedsend: ::c_long = 182; | ||
| 761 | +pub const SYS_mq_timedreceive: ::c_long = 183; | ||
| 762 | +pub const SYS_mq_notify: ::c_long = 184; | ||
| 763 | +pub const SYS_mq_getsetattr: ::c_long = 185; | ||
| 764 | +pub const SYS_kexec_load: ::c_long = 104; | ||
| 765 | +pub const SYS_waitid: ::c_long = 95; | ||
| 766 | +pub const SYS_add_key: ::c_long = 217; | ||
| 767 | +pub const SYS_request_key: ::c_long = 218; | ||
| 768 | +pub const SYS_keyctl: ::c_long = 219; | ||
| 769 | +pub const SYS_ioprio_set: ::c_long = 30; | ||
| 770 | +pub const SYS_ioprio_get: ::c_long = 31; | ||
| 771 | +pub const SYS_inotify_add_watch: ::c_long = 27; | ||
| 772 | +pub const SYS_inotify_rm_watch: ::c_long = 28; | ||
| 773 | +pub const SYS_migrate_pages: ::c_long = 238; | ||
| 774 | +pub const SYS_openat: ::c_long = 56; | ||
| 775 | +pub const SYS_mkdirat: ::c_long = 34; | ||
| 776 | +pub const SYS_mknodat: ::c_long = 33; | ||
| 777 | +pub const SYS_fchownat: ::c_long = 54; | ||
| 778 | +pub const SYS_newfstatat: ::c_long = 79; | ||
| 779 | +pub const SYS_unlinkat: ::c_long = 35; | ||
| 780 | +pub const SYS_linkat: ::c_long = 37; | ||
| 781 | +pub const SYS_symlinkat: ::c_long = 36; | ||
| 782 | +pub const SYS_readlinkat: ::c_long = 78; | ||
| 783 | +pub const SYS_fchmodat: ::c_long = 53; | ||
| 784 | +pub const SYS_faccessat: ::c_long = 48; | ||
| 785 | +pub const SYS_pselect6: ::c_long = 72; | ||
| 786 | +pub const SYS_ppoll: ::c_long = 73; | ||
| 787 | +pub const SYS_unshare: ::c_long = 97; | ||
| 788 | +pub const SYS_set_robust_list: ::c_long = 99; | ||
| 789 | +pub const SYS_get_robust_list: ::c_long = 100; | ||
| 790 | +pub const SYS_splice: ::c_long = 76; | ||
| 791 | +pub const SYS_tee: ::c_long = 77; | ||
| 792 | +pub const SYS_sync_file_range: ::c_long = 84; | ||
| 793 | +pub const SYS_vmsplice: ::c_long = 75; | ||
| 794 | +pub const SYS_move_pages: ::c_long = 239; | ||
| 795 | +pub const SYS_utimensat: ::c_long = 88; | ||
| 796 | +pub const SYS_epoll_pwait: ::c_long = 22; | ||
| 797 | +pub const SYS_timerfd_create: ::c_long = 85; | ||
| 798 | +pub const SYS_fallocate: ::c_long = 47; | ||
| 799 | +pub const SYS_timerfd_settime: ::c_long = 86; | ||
| 800 | +pub const SYS_timerfd_gettime: ::c_long = 87; | ||
| 801 | +pub const SYS_accept4: ::c_long = 242; | ||
| 802 | +pub const SYS_signalfd4: ::c_long = 74; | ||
| 803 | +pub const SYS_eventfd2: ::c_long = 19; | ||
| 804 | +pub const SYS_epoll_create1: ::c_long = 20; | ||
| 805 | +pub const SYS_dup3: ::c_long = 24; | ||
| 806 | +pub const SYS_pipe2: ::c_long = 59; | ||
| 807 | +pub const SYS_inotify_init1: ::c_long = 26; | ||
| 808 | +pub const SYS_preadv: ::c_long = 69; | ||
| 809 | +pub const SYS_pwritev: ::c_long = 70; | ||
| 810 | +pub const SYS_rt_tgsigqueueinfo: ::c_long = 240; | ||
| 811 | +pub const SYS_perf_event_open: ::c_long = 241; | ||
| 812 | +pub const SYS_recvmmsg: ::c_long = 243; | ||
| 813 | +pub const SYS_fanotify_init: ::c_long = 262; | ||
| 814 | +pub const SYS_fanotify_mark: ::c_long = 263; | ||
| 815 | +pub const SYS_prlimit64: ::c_long = 261; | ||
| 816 | +pub const SYS_name_to_handle_at: ::c_long = 264; | ||
| 817 | +pub const SYS_open_by_handle_at: ::c_long = 265; | ||
| 818 | +pub const SYS_clock_adjtime: ::c_long = 266; | ||
| 819 | +pub const SYS_syncfs: ::c_long = 267; | ||
| 820 | +pub const SYS_sendmmsg: ::c_long = 269; | ||
| 821 | +pub const SYS_setns: ::c_long = 268; | ||
| 822 | +pub const SYS_getcpu: ::c_long = 168; | ||
| 823 | +pub const SYS_process_vm_readv: ::c_long = 270; | ||
| 824 | +pub const SYS_process_vm_writev: ::c_long = 271; | ||
| 825 | +pub const SYS_kcmp: ::c_long = 272; | ||
| 826 | +pub const SYS_finit_module: ::c_long = 273; | ||
| 827 | +pub const SYS_sched_setattr: ::c_long = 274; | ||
| 828 | +pub const SYS_sched_getattr: ::c_long = 275; | ||
| 829 | +pub const SYS_renameat2: ::c_long = 276; | ||
| 830 | +pub const SYS_seccomp: ::c_long = 277; | ||
| 831 | +pub const SYS_getrandom: ::c_long = 278; | ||
| 832 | +pub const SYS_memfd_create: ::c_long = 279; | ||
| 833 | +pub const SYS_bpf: ::c_long = 280; | ||
| 834 | +pub const SYS_execveat: ::c_long = 281; | ||
| 835 | +pub const SYS_userfaultfd: ::c_long = 282; | ||
| 836 | +pub const SYS_membarrier: ::c_long = 283; | ||
| 837 | +pub const SYS_mlock2: ::c_long = 284; | ||
| 838 | +pub const SYS_copy_file_range: ::c_long = 285; | ||
| 839 | +pub const SYS_preadv2: ::c_long = 286; | ||
| 840 | +pub const SYS_pwritev2: ::c_long = 287; | ||
| 841 | +pub const SYS_pkey_mprotect: ::c_long = 288; | ||
| 842 | +pub const SYS_pkey_alloc: ::c_long = 289; | ||
| 843 | +pub const SYS_pkey_free: ::c_long = 290; | ||
| 844 | +pub const SYS_statx: ::c_long = 291; | ||
| 845 | +pub const SYS_pidfd_send_signal: ::c_long = 424; | ||
| 846 | +pub const SYS_io_uring_setup: ::c_long = 425; | ||
| 847 | +pub const SYS_io_uring_enter: ::c_long = 426; | ||
| 848 | +pub const SYS_io_uring_register: ::c_long = 427; | ||
| 849 | +pub const SYS_open_tree: ::c_long = 428; | ||
| 850 | +pub const SYS_move_mount: ::c_long = 429; | ||
| 851 | +pub const SYS_fsopen: ::c_long = 430; | ||
| 852 | +pub const SYS_fsconfig: ::c_long = 431; | ||
| 853 | +pub const SYS_fsmount: ::c_long = 432; | ||
| 854 | +pub const SYS_fspick: ::c_long = 433; | ||
| 855 | +pub const SYS_pidfd_open: ::c_long = 434; | ||
| 856 | +pub const SYS_clone3: ::c_long = 435; | ||
| 857 | +pub const SYS_close_range: ::c_long = 436; | ||
| 858 | +pub const SYS_openat2: ::c_long = 437; | ||
| 859 | +pub const SYS_pidfd_getfd: ::c_long = 438; | ||
| 860 | +pub const SYS_faccessat2: ::c_long = 439; | ||
| 861 | +pub const SYS_process_madvise: ::c_long = 440; | ||
| 862 | +pub const SYS_epoll_pwait2: ::c_long = 441; | ||
| 863 | +pub const SYS_mount_setattr: ::c_long = 442; | ||
diff --git a/meta/recipes-devtools/rust/libstd-rs/0002-FIXUP-linux-musl-mod.rs-add-riscv64-to-b64-set.patch b/meta/recipes-devtools/rust/libstd-rs/0002-FIXUP-linux-musl-mod.rs-add-riscv64-to-b64-set.patch deleted file mode 100644 index ad321d14bb..0000000000 --- a/meta/recipes-devtools/rust/libstd-rs/0002-FIXUP-linux-musl-mod.rs-add-riscv64-to-b64-set.patch +++ /dev/null | |||
| @@ -1,31 +0,0 @@ | |||
| 1 | From bd805ef63035ecefa03f67d5ab2e1d79f7daf9bc Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Ralf Anton Beier <ralf_beier@me.com> | ||
| 3 | Date: Sun, 8 Aug 2021 11:07:21 +0200 | ||
| 4 | Subject: [PATCH 2/4] FIXUP: linux/musl/mod.rs: add riscv64 to b64 set | ||
| 5 | |||
| 6 | https://github.com/rust-lang/libc/pull/1994/commits/30070c822be2ef399b2ba38cdc1d72ac694d65a3 | ||
| 7 | |||
| 8 | Upstream-Status: Submitted [https://github.com/rust-lang/libc/pull/2537] | ||
| 9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 10 | Signed-off-by: Ralf Anton Beier <ralf_beier@me.com> | ||
| 11 | --- | ||
| 12 | vendor/libc-0.2.106/src/unix/linux_like/linux/musl/mod.rs | 3 ++- | ||
| 13 | 1 file changed, 2 insertions(+), 1 deletion(-) | ||
| 14 | |||
| 15 | diff --git a/vendor/libc-0.2.106/src/unix/linux_like/linux/musl/mod.rs b/vendor/libc-0.2.106/src/unix/linux_like/linux/musl/mod.rs | ||
| 16 | index df596e968..1ab13a712 100644 | ||
| 17 | --- a/vendor/libc-0.2.106/src/unix/linux_like/linux/musl/mod.rs | ||
| 18 | +++ b/vendor/libc-0.2.106/src/unix/linux_like/linux/musl/mod.rs | ||
| 19 | @@ -765,7 +765,8 @@ cfg_if! { | ||
| 20 | target_arch = "aarch64", | ||
| 21 | target_arch = "mips64", | ||
| 22 | target_arch = "powerpc64", | ||
| 23 | - target_arch = "s390x"))] { | ||
| 24 | + target_arch = "s390x", | ||
| 25 | + target_arch = "riscv64"))] { | ||
| 26 | mod b64; | ||
| 27 | pub use self::b64::*; | ||
| 28 | } else if #[cfg(any(target_arch = "x86", | ||
| 29 | -- | ||
| 30 | 2.20.1 | ||
| 31 | |||
diff --git a/meta/recipes-devtools/rust/libstd-rs/0003-FIXUP-Correct-definitions-to-match-musl.patch b/meta/recipes-devtools/rust/libstd-rs/0003-FIXUP-Correct-definitions-to-match-musl.patch deleted file mode 100644 index de6b73eb5c..0000000000 --- a/meta/recipes-devtools/rust/libstd-rs/0003-FIXUP-Correct-definitions-to-match-musl.patch +++ /dev/null | |||
| @@ -1,689 +0,0 @@ | |||
| 1 | From a811c933372b18b98fdef3d5901b512131b27b1c Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Ralf Anton Beier <ralf_beier@me.com> | ||
| 3 | Date: Sun, 8 Aug 2021 11:09:17 +0200 | ||
| 4 | Subject: [PATCH 3/4] FIXUP Correct definitions to match musl | ||
| 5 | |||
| 6 | https://github.com/rust-lang/libc/pull/1994/commits/5f6a4d9745c79c81be63c708515ab116786554a3 | ||
| 7 | |||
| 8 | Upstream-Status: Submitted [https://github.com/rust-lang/libc/pull/2537] | ||
| 9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 10 | Signed-off-by: Ralf Anton Beier <ralf_beier@me.com> | ||
| 11 | --- | ||
| 12 | .../linux_like/linux/musl/b64/riscv64/mod.rs | 655 +++++++++--------- | ||
| 13 | 1 file changed, 312 insertions(+), 343 deletions(-) | ||
| 14 | |||
| 15 | diff --git a/vendor/libc-0.2.106/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs b/vendor/libc-0.2.106/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs | ||
| 16 | index c656189c4..1799539c2 100644 | ||
| 17 | --- a/vendor/libc-0.2.106/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs | ||
| 18 | +++ b/vendor/libc-0.2.106/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs | ||
| 19 | @@ -191,351 +191,8 @@ s! { | ||
| 20 | pub l_len: ::off64_t, | ||
| 21 | pub l_pid: ::pid_t, | ||
| 22 | } | ||
| 23 | - | ||
| 24 | - pub struct ip_mreqn { | ||
| 25 | - pub imr_multiaddr: ::in_addr, | ||
| 26 | - pub imr_address: ::in_addr, | ||
| 27 | - pub imr_ifindex: ::c_int, | ||
| 28 | - } | ||
| 29 | } | ||
| 30 | |||
| 31 | -pub const POSIX_FADV_DONTNEED: ::c_int = 4; | ||
| 32 | -pub const POSIX_FADV_NOREUSE: ::c_int = 5; | ||
| 33 | -pub const VEOF: usize = 4; | ||
| 34 | -pub const RTLD_DEEPBIND: ::c_int = 0x8; | ||
| 35 | -pub const RTLD_GLOBAL: ::c_int = 0x100; | ||
| 36 | -pub const RTLD_NOLOAD: ::c_int = 0x4; | ||
| 37 | -pub const TIOCGSOFTCAR: ::c_ulong = 21529; | ||
| 38 | -pub const TIOCSSOFTCAR: ::c_ulong = 21530; | ||
| 39 | -pub const TIOCGRS485: ::c_int = 21550; | ||
| 40 | -pub const TIOCSRS485: ::c_int = 21551; | ||
| 41 | -pub const RLIMIT_RSS: ::__rlimit_resource_t = 5; | ||
| 42 | -pub const RLIMIT_AS: ::__rlimit_resource_t = 9; | ||
| 43 | -pub const RLIMIT_MEMLOCK: ::__rlimit_resource_t = 8; | ||
| 44 | -pub const RLIMIT_NOFILE: ::__rlimit_resource_t = 7; | ||
| 45 | -pub const RLIMIT_NPROC: ::__rlimit_resource_t = 6; | ||
| 46 | -pub const O_APPEND: ::c_int = 1024; | ||
| 47 | -pub const O_CREAT: ::c_int = 64; | ||
| 48 | -pub const O_EXCL: ::c_int = 128; | ||
| 49 | -pub const O_NOCTTY: ::c_int = 256; | ||
| 50 | -pub const O_NONBLOCK: ::c_int = 2048; | ||
| 51 | -pub const O_SYNC: ::c_int = 1052672; | ||
| 52 | -pub const O_RSYNC: ::c_int = 1052672; | ||
| 53 | -pub const O_DSYNC: ::c_int = 4096; | ||
| 54 | -pub const O_FSYNC: ::c_int = 1052672; | ||
| 55 | -pub const O_NOATIME: ::c_int = 262144; | ||
| 56 | -pub const O_PATH: ::c_int = 2097152; | ||
| 57 | -pub const O_TMPFILE: ::c_int = 4259840; | ||
| 58 | -pub const MAP_GROWSDOWN: ::c_int = 256; | ||
| 59 | -pub const EDEADLK: ::c_int = 35; | ||
| 60 | -pub const ENAMETOOLONG: ::c_int = 36; | ||
| 61 | -pub const ENOLCK: ::c_int = 37; | ||
| 62 | -pub const ENOSYS: ::c_int = 38; | ||
| 63 | -pub const ENOTEMPTY: ::c_int = 39; | ||
| 64 | -pub const ELOOP: ::c_int = 40; | ||
| 65 | -pub const ENOMSG: ::c_int = 42; | ||
| 66 | -pub const EIDRM: ::c_int = 43; | ||
| 67 | -pub const ECHRNG: ::c_int = 44; | ||
| 68 | -pub const EL2NSYNC: ::c_int = 45; | ||
| 69 | -pub const EL3HLT: ::c_int = 46; | ||
| 70 | -pub const EL3RST: ::c_int = 47; | ||
| 71 | -pub const ELNRNG: ::c_int = 48; | ||
| 72 | -pub const EUNATCH: ::c_int = 49; | ||
| 73 | -pub const ENOCSI: ::c_int = 50; | ||
| 74 | -pub const EL2HLT: ::c_int = 51; | ||
| 75 | -pub const EBADE: ::c_int = 52; | ||
| 76 | -pub const EBADR: ::c_int = 53; | ||
| 77 | -pub const EXFULL: ::c_int = 54; | ||
| 78 | -pub const ENOANO: ::c_int = 55; | ||
| 79 | -pub const EBADRQC: ::c_int = 56; | ||
| 80 | -pub const EBADSLT: ::c_int = 57; | ||
| 81 | -pub const EMULTIHOP: ::c_int = 72; | ||
| 82 | -pub const EOVERFLOW: ::c_int = 75; | ||
| 83 | -pub const ENOTUNIQ: ::c_int = 76; | ||
| 84 | -pub const EBADFD: ::c_int = 77; | ||
| 85 | -pub const EBADMSG: ::c_int = 74; | ||
| 86 | -pub const EREMCHG: ::c_int = 78; | ||
| 87 | -pub const ELIBACC: ::c_int = 79; | ||
| 88 | -pub const ELIBBAD: ::c_int = 80; | ||
| 89 | -pub const ELIBSCN: ::c_int = 81; | ||
| 90 | -pub const ELIBMAX: ::c_int = 82; | ||
| 91 | -pub const ELIBEXEC: ::c_int = 83; | ||
| 92 | -pub const EILSEQ: ::c_int = 84; | ||
| 93 | -pub const ERESTART: ::c_int = 85; | ||
| 94 | -pub const ESTRPIPE: ::c_int = 86; | ||
| 95 | -pub const EUSERS: ::c_int = 87; | ||
| 96 | -pub const ENOTSOCK: ::c_int = 88; | ||
| 97 | -pub const EDESTADDRREQ: ::c_int = 89; | ||
| 98 | -pub const EMSGSIZE: ::c_int = 90; | ||
| 99 | -pub const EPROTOTYPE: ::c_int = 91; | ||
| 100 | -pub const ENOPROTOOPT: ::c_int = 92; | ||
| 101 | -pub const EPROTONOSUPPORT: ::c_int = 93; | ||
| 102 | -pub const ESOCKTNOSUPPORT: ::c_int = 94; | ||
| 103 | -pub const EOPNOTSUPP: ::c_int = 95; | ||
| 104 | -pub const EPFNOSUPPORT: ::c_int = 96; | ||
| 105 | -pub const EAFNOSUPPORT: ::c_int = 97; | ||
| 106 | -pub const EADDRINUSE: ::c_int = 98; | ||
| 107 | -pub const EADDRNOTAVAIL: ::c_int = 99; | ||
| 108 | -pub const ENETDOWN: ::c_int = 100; | ||
| 109 | -pub const ENETUNREACH: ::c_int = 101; | ||
| 110 | -pub const ENETRESET: ::c_int = 102; | ||
| 111 | -pub const ECONNABORTED: ::c_int = 103; | ||
| 112 | -pub const ECONNRESET: ::c_int = 104; | ||
| 113 | -pub const ENOBUFS: ::c_int = 105; | ||
| 114 | -pub const EISCONN: ::c_int = 106; | ||
| 115 | -pub const ENOTCONN: ::c_int = 107; | ||
| 116 | -pub const ESHUTDOWN: ::c_int = 108; | ||
| 117 | -pub const ETOOMANYREFS: ::c_int = 109; | ||
| 118 | -pub const ETIMEDOUT: ::c_int = 110; | ||
| 119 | -pub const ECONNREFUSED: ::c_int = 111; | ||
| 120 | -pub const EHOSTDOWN: ::c_int = 112; | ||
| 121 | -pub const EHOSTUNREACH: ::c_int = 113; | ||
| 122 | -pub const EALREADY: ::c_int = 114; | ||
| 123 | -pub const EINPROGRESS: ::c_int = 115; | ||
| 124 | -pub const ESTALE: ::c_int = 116; | ||
| 125 | -pub const EDQUOT: ::c_int = 122; | ||
| 126 | -pub const ENOMEDIUM: ::c_int = 123; | ||
| 127 | -pub const EMEDIUMTYPE: ::c_int = 124; | ||
| 128 | -pub const ECANCELED: ::c_int = 125; | ||
| 129 | -pub const ENOKEY: ::c_int = 126; | ||
| 130 | -pub const EKEYEXPIRED: ::c_int = 127; | ||
| 131 | -pub const EKEYREVOKED: ::c_int = 128; | ||
| 132 | -pub const EKEYREJECTED: ::c_int = 129; | ||
| 133 | -pub const EOWNERDEAD: ::c_int = 130; | ||
| 134 | -pub const ENOTRECOVERABLE: ::c_int = 131; | ||
| 135 | -pub const EHWPOISON: ::c_int = 133; | ||
| 136 | -pub const ERFKILL: ::c_int = 132; | ||
| 137 | - | ||
| 138 | -pub const SOCK_STREAM: ::c_int = 1; | ||
| 139 | -pub const SOCK_DGRAM: ::c_int = 2; | ||
| 140 | -pub const SA_ONSTACK: ::c_int = 134217728; | ||
| 141 | -pub const SA_SIGINFO: ::c_int = 4; | ||
| 142 | -pub const SA_NOCLDWAIT: ::c_int = 2; | ||
| 143 | -pub const SIGTTIN: ::c_int = 21; | ||
| 144 | -pub const SIGTTOU: ::c_int = 22; | ||
| 145 | -pub const SIGXCPU: ::c_int = 24; | ||
| 146 | -pub const SIGXFSZ: ::c_int = 25; | ||
| 147 | -pub const SIGVTALRM: ::c_int = 26; | ||
| 148 | -pub const SIGPROF: ::c_int = 27; | ||
| 149 | -pub const SIGWINCH: ::c_int = 28; | ||
| 150 | -pub const SIGCHLD: ::c_int = 17; | ||
| 151 | -pub const SIGBUS: ::c_int = 7; | ||
| 152 | -pub const SIGUSR1: ::c_int = 10; | ||
| 153 | -pub const SIGUSR2: ::c_int = 12; | ||
| 154 | -pub const SIGCONT: ::c_int = 18; | ||
| 155 | -pub const SIGSTOP: ::c_int = 19; | ||
| 156 | -pub const SIGTSTP: ::c_int = 20; | ||
| 157 | -pub const SIGURG: ::c_int = 23; | ||
| 158 | -pub const SIGIO: ::c_int = 29; | ||
| 159 | -pub const SIGSYS: ::c_int = 31; | ||
| 160 | -pub const SIGSTKFLT: ::c_int = 16; | ||
| 161 | -pub const SIGPOLL: ::c_int = 29; | ||
| 162 | -pub const SIGPWR: ::c_int = 30; | ||
| 163 | -pub const SIG_SETMASK: ::c_int = 2; | ||
| 164 | -pub const SIG_BLOCK: ::c_int = 0; | ||
| 165 | -pub const SIG_UNBLOCK: ::c_int = 1; | ||
| 166 | -pub const POLLWRNORM: ::c_short = 256; | ||
| 167 | -pub const POLLWRBAND: ::c_short = 512; | ||
| 168 | -pub const O_ASYNC: ::c_int = 8192; | ||
| 169 | -pub const O_NDELAY: ::c_int = 2048; | ||
| 170 | -pub const PTRACE_DETACH: ::c_uint = 17; | ||
| 171 | -pub const EFD_NONBLOCK: ::c_int = 2048; | ||
| 172 | -pub const F_GETLK: ::c_int = 5; | ||
| 173 | -pub const F_GETOWN: ::c_int = 9; | ||
| 174 | -pub const F_SETOWN: ::c_int = 8; | ||
| 175 | -pub const F_SETLK: ::c_int = 6; | ||
| 176 | -pub const F_SETLKW: ::c_int = 7; | ||
| 177 | -pub const F_RDLCK: ::c_int = 0; | ||
| 178 | -pub const F_WRLCK: ::c_int = 1; | ||
| 179 | -pub const F_UNLCK: ::c_int = 2; | ||
| 180 | -pub const F_OFD_GETLK: ::c_int = 36; | ||
| 181 | -pub const F_OFD_SETLK: ::c_int = 37; | ||
| 182 | -pub const F_OFD_SETLKW: ::c_int = 38; | ||
| 183 | -pub const SFD_NONBLOCK: ::c_int = 2048; | ||
| 184 | -pub const TCSANOW: ::c_int = 0; | ||
| 185 | -pub const TCSADRAIN: ::c_int = 1; | ||
| 186 | -pub const TCSAFLUSH: ::c_int = 2; | ||
| 187 | -pub const TIOCLINUX: ::c_ulong = 21532; | ||
| 188 | -pub const TIOCGSERIAL: ::c_ulong = 21534; | ||
| 189 | -pub const TIOCEXCL: ::c_ulong = 21516; | ||
| 190 | -pub const TIOCNXCL: ::c_ulong = 21517; | ||
| 191 | -pub const TIOCSCTTY: ::c_ulong = 21518; | ||
| 192 | -pub const TIOCSTI: ::c_ulong = 21522; | ||
| 193 | -pub const TIOCMGET: ::c_ulong = 21525; | ||
| 194 | -pub const TIOCMBIS: ::c_ulong = 21526; | ||
| 195 | -pub const TIOCMBIC: ::c_ulong = 21527; | ||
| 196 | -pub const TIOCMSET: ::c_ulong = 21528; | ||
| 197 | -pub const TIOCCONS: ::c_ulong = 21533; | ||
| 198 | -pub const TIOCM_ST: ::c_int = 8; | ||
| 199 | -pub const TIOCM_SR: ::c_int = 16; | ||
| 200 | -pub const TIOCM_CTS: ::c_int = 32; | ||
| 201 | -pub const TIOCM_CAR: ::c_int = 64; | ||
| 202 | -pub const TIOCM_RNG: ::c_int = 128; | ||
| 203 | -pub const TIOCM_DSR: ::c_int = 256; | ||
| 204 | -pub const SFD_CLOEXEC: ::c_int = 524288; | ||
| 205 | -pub const NCCS: usize = 32; | ||
| 206 | -pub const O_TRUNC: ::c_int = 512; | ||
| 207 | -pub const O_CLOEXEC: ::c_int = 524288; | ||
| 208 | -pub const EBFONT: ::c_int = 59; | ||
| 209 | -pub const ENOSTR: ::c_int = 60; | ||
| 210 | -pub const ENODATA: ::c_int = 61; | ||
| 211 | -pub const ETIME: ::c_int = 62; | ||
| 212 | -pub const ENOSR: ::c_int = 63; | ||
| 213 | -pub const ENONET: ::c_int = 64; | ||
| 214 | -pub const ENOPKG: ::c_int = 65; | ||
| 215 | -pub const EREMOTE: ::c_int = 66; | ||
| 216 | -pub const ENOLINK: ::c_int = 67; | ||
| 217 | -pub const EADV: ::c_int = 68; | ||
| 218 | -pub const ESRMNT: ::c_int = 69; | ||
| 219 | -pub const ECOMM: ::c_int = 70; | ||
| 220 | -pub const EPROTO: ::c_int = 71; | ||
| 221 | -pub const EDOTDOT: ::c_int = 73; | ||
| 222 | -pub const SA_NODEFER: ::c_int = 1073741824; | ||
| 223 | -pub const SA_RESETHAND: ::c_int = -2147483648; | ||
| 224 | -pub const SA_RESTART: ::c_int = 268435456; | ||
| 225 | -pub const SA_NOCLDSTOP: ::c_int = 1; | ||
| 226 | -pub const EPOLL_CLOEXEC: ::c_int = 524288; | ||
| 227 | -pub const EFD_CLOEXEC: ::c_int = 524288; | ||
| 228 | -pub const __SIZEOF_PTHREAD_CONDATTR_T: usize = 4; | ||
| 229 | -pub const __SIZEOF_PTHREAD_MUTEXATTR_T: usize = 4; | ||
| 230 | -pub const O_DIRECT: ::c_int = 16384; | ||
| 231 | -pub const O_DIRECTORY: ::c_int = 65536; | ||
| 232 | -pub const O_NOFOLLOW: ::c_int = 131072; | ||
| 233 | -pub const MAP_HUGETLB: ::c_int = 262144; | ||
| 234 | -pub const MAP_LOCKED: ::c_int = 8192; | ||
| 235 | -pub const MAP_NORESERVE: ::c_int = 16384; | ||
| 236 | -pub const MAP_ANON: ::c_int = 32; | ||
| 237 | -pub const MAP_ANONYMOUS: ::c_int = 32; | ||
| 238 | -pub const MAP_DENYWRITE: ::c_int = 2048; | ||
| 239 | -pub const MAP_EXECUTABLE: ::c_int = 4096; | ||
| 240 | -pub const MAP_POPULATE: ::c_int = 32768; | ||
| 241 | -pub const MAP_NONBLOCK: ::c_int = 65536; | ||
| 242 | -pub const MAP_STACK: ::c_int = 131072; | ||
| 243 | -pub const MAP_SYNC: ::c_int = 0x080000; | ||
| 244 | -pub const EDEADLOCK: ::c_int = 35; | ||
| 245 | -pub const EUCLEAN: ::c_int = 117; | ||
| 246 | -pub const ENOTNAM: ::c_int = 118; | ||
| 247 | -pub const ENAVAIL: ::c_int = 119; | ||
| 248 | -pub const EISNAM: ::c_int = 120; | ||
| 249 | -pub const EREMOTEIO: ::c_int = 121; | ||
| 250 | -pub const FIOCLEX: ::c_ulong = 21585; | ||
| 251 | -pub const FIONCLEX: ::c_ulong = 21584; | ||
| 252 | -pub const FIONBIO: ::c_ulong = 21537; | ||
| 253 | -pub const MCL_CURRENT: ::c_int = 1; | ||
| 254 | -pub const MCL_FUTURE: ::c_int = 2; | ||
| 255 | -pub const SIGSTKSZ: ::size_t = 8192; | ||
| 256 | -pub const MINSIGSTKSZ: ::size_t = 2048; | ||
| 257 | -pub const CBAUD: ::tcflag_t = 4111; | ||
| 258 | -pub const TAB1: ::tcflag_t = 2048; | ||
| 259 | -pub const TAB2: ::tcflag_t = 4096; | ||
| 260 | -pub const TAB3: ::tcflag_t = 6144; | ||
| 261 | -pub const CR1: ::tcflag_t = 512; | ||
| 262 | -pub const CR2: ::tcflag_t = 1024; | ||
| 263 | -pub const CR3: ::tcflag_t = 1536; | ||
| 264 | -pub const FF1: ::tcflag_t = 32768; | ||
| 265 | -pub const BS1: ::tcflag_t = 8192; | ||
| 266 | -pub const VT1: ::tcflag_t = 16384; | ||
| 267 | -pub const VWERASE: usize = 14; | ||
| 268 | -pub const VREPRINT: usize = 12; | ||
| 269 | -pub const VSUSP: usize = 10; | ||
| 270 | -pub const VSTART: usize = 8; | ||
| 271 | -pub const VSTOP: usize = 9; | ||
| 272 | -pub const VDISCARD: usize = 13; | ||
| 273 | -pub const VTIME: usize = 5; | ||
| 274 | -pub const IXON: ::tcflag_t = 1024; | ||
| 275 | -pub const IXOFF: ::tcflag_t = 4096; | ||
| 276 | -pub const ONLCR: ::tcflag_t = 4; | ||
| 277 | -pub const CSIZE: ::tcflag_t = 48; | ||
| 278 | -pub const CS6: ::tcflag_t = 16; | ||
| 279 | -pub const CS7: ::tcflag_t = 32; | ||
| 280 | -pub const CS8: ::tcflag_t = 48; | ||
| 281 | -pub const CSTOPB: ::tcflag_t = 64; | ||
| 282 | -pub const CREAD: ::tcflag_t = 128; | ||
| 283 | -pub const PARENB: ::tcflag_t = 256; | ||
| 284 | -pub const PARODD: ::tcflag_t = 512; | ||
| 285 | -pub const HUPCL: ::tcflag_t = 1024; | ||
| 286 | -pub const CLOCAL: ::tcflag_t = 2048; | ||
| 287 | -pub const ECHOKE: ::tcflag_t = 2048; | ||
| 288 | -pub const ECHOE: ::tcflag_t = 16; | ||
| 289 | -pub const ECHOK: ::tcflag_t = 32; | ||
| 290 | -pub const ECHONL: ::tcflag_t = 64; | ||
| 291 | -pub const ECHOPRT: ::tcflag_t = 1024; | ||
| 292 | -pub const ECHOCTL: ::tcflag_t = 512; | ||
| 293 | -pub const ISIG: ::tcflag_t = 1; | ||
| 294 | -pub const ICANON: ::tcflag_t = 2; | ||
| 295 | -pub const PENDIN: ::tcflag_t = 16384; | ||
| 296 | -pub const NOFLSH: ::tcflag_t = 128; | ||
| 297 | -pub const CIBAUD: ::tcflag_t = 269418496; | ||
| 298 | -pub const CBAUDEX: ::tcflag_t = 4096; | ||
| 299 | -pub const VSWTC: usize = 7; | ||
| 300 | -pub const OLCUC: ::tcflag_t = 2; | ||
| 301 | -pub const NLDLY: ::tcflag_t = 256; | ||
| 302 | -pub const CRDLY: ::tcflag_t = 1536; | ||
| 303 | -pub const TABDLY: ::tcflag_t = 6144; | ||
| 304 | -pub const BSDLY: ::tcflag_t = 8192; | ||
| 305 | -pub const FFDLY: ::tcflag_t = 32768; | ||
| 306 | -pub const VTDLY: ::tcflag_t = 16384; | ||
| 307 | -pub const XTABS: ::tcflag_t = 6144; | ||
| 308 | -pub const B0: ::speed_t = 0; | ||
| 309 | -pub const B50: ::speed_t = 1; | ||
| 310 | -pub const B75: ::speed_t = 2; | ||
| 311 | -pub const B110: ::speed_t = 3; | ||
| 312 | -pub const B134: ::speed_t = 4; | ||
| 313 | -pub const B150: ::speed_t = 5; | ||
| 314 | -pub const B200: ::speed_t = 6; | ||
| 315 | -pub const B300: ::speed_t = 7; | ||
| 316 | -pub const B600: ::speed_t = 8; | ||
| 317 | -pub const B1200: ::speed_t = 9; | ||
| 318 | -pub const B1800: ::speed_t = 10; | ||
| 319 | -pub const B2400: ::speed_t = 11; | ||
| 320 | -pub const B4800: ::speed_t = 12; | ||
| 321 | -pub const B9600: ::speed_t = 13; | ||
| 322 | -pub const B19200: ::speed_t = 14; | ||
| 323 | -pub const B38400: ::speed_t = 15; | ||
| 324 | -pub const EXTA: ::speed_t = 14; | ||
| 325 | -pub const EXTB: ::speed_t = 15; | ||
| 326 | -pub const B57600: ::speed_t = 4097; | ||
| 327 | -pub const B115200: ::speed_t = 4098; | ||
| 328 | -pub const B230400: ::speed_t = 4099; | ||
| 329 | -pub const B460800: ::speed_t = 4100; | ||
| 330 | -pub const B500000: ::speed_t = 4101; | ||
| 331 | -pub const B576000: ::speed_t = 4102; | ||
| 332 | -pub const B921600: ::speed_t = 4103; | ||
| 333 | -pub const B1000000: ::speed_t = 4104; | ||
| 334 | -pub const B1152000: ::speed_t = 4105; | ||
| 335 | -pub const B1500000: ::speed_t = 4106; | ||
| 336 | -pub const B2000000: ::speed_t = 4107; | ||
| 337 | -pub const B2500000: ::speed_t = 4108; | ||
| 338 | -pub const B3000000: ::speed_t = 4109; | ||
| 339 | -pub const B3500000: ::speed_t = 4110; | ||
| 340 | -pub const B4000000: ::speed_t = 4111; | ||
| 341 | -pub const VEOL: usize = 11; | ||
| 342 | -pub const VEOL2: usize = 16; | ||
| 343 | -pub const VMIN: usize = 6; | ||
| 344 | -pub const IEXTEN: ::tcflag_t = 32768; | ||
| 345 | -pub const TOSTOP: ::tcflag_t = 256; | ||
| 346 | -pub const FLUSHO: ::tcflag_t = 4096; | ||
| 347 | -pub const EXTPROC: ::tcflag_t = 65536; | ||
| 348 | -pub const TCGETS: ::c_ulong = 21505; | ||
| 349 | -pub const TCSETS: ::c_ulong = 21506; | ||
| 350 | -pub const TCSETSW: ::c_ulong = 21507; | ||
| 351 | -pub const TCSETSF: ::c_ulong = 21508; | ||
| 352 | -pub const TCGETA: ::c_ulong = 21509; | ||
| 353 | -pub const TCSETA: ::c_ulong = 21510; | ||
| 354 | -pub const TCSETAW: ::c_ulong = 21511; | ||
| 355 | -pub const TCSETAF: ::c_ulong = 21512; | ||
| 356 | -pub const TCSBRK: ::c_ulong = 21513; | ||
| 357 | -pub const TCXONC: ::c_ulong = 21514; | ||
| 358 | -pub const TCFLSH: ::c_ulong = 21515; | ||
| 359 | -pub const TIOCINQ: ::c_ulong = 21531; | ||
| 360 | -pub const TIOCGPGRP: ::c_ulong = 21519; | ||
| 361 | -pub const TIOCSPGRP: ::c_ulong = 21520; | ||
| 362 | -pub const TIOCOUTQ: ::c_ulong = 21521; | ||
| 363 | -pub const TIOCGWINSZ: ::c_ulong = 21523; | ||
| 364 | -pub const TIOCSWINSZ: ::c_ulong = 21524; | ||
| 365 | -pub const FIONREAD: ::c_ulong = 21531; | ||
| 366 | -pub const __SIZEOF_PTHREAD_MUTEX_T: usize = 40; | ||
| 367 | -pub const __SIZEOF_PTHREAD_RWLOCK_T: usize = 56; | ||
| 368 | pub const SYS_read: ::c_long = 63; | ||
| 369 | pub const SYS_write: ::c_long = 64; | ||
| 370 | pub const SYS_close: ::c_long = 57; | ||
| 371 | @@ -830,3 +487,315 @@ pub const SYS_faccessat2: ::c_long = 439; | ||
| 372 | pub const SYS_process_madvise: ::c_long = 440; | ||
| 373 | pub const SYS_epoll_pwait2: ::c_long = 441; | ||
| 374 | pub const SYS_mount_setattr: ::c_long = 442; | ||
| 375 | + | ||
| 376 | + | ||
| 377 | +pub const O_APPEND: ::c_int = 1024; | ||
| 378 | +pub const O_DIRECT: ::c_int = 0x4000; | ||
| 379 | +pub const O_DIRECTORY: ::c_int = 0x10000; | ||
| 380 | +pub const O_LARGEFILE: ::c_int = 0; | ||
| 381 | +pub const O_NOFOLLOW: ::c_int = 0x20000; | ||
| 382 | +pub const O_CREAT: ::c_int = 64; | ||
| 383 | +pub const O_EXCL: ::c_int = 128; | ||
| 384 | +pub const O_NOCTTY: ::c_int = 256; | ||
| 385 | +pub const O_NONBLOCK: ::c_int = 2048; | ||
| 386 | +pub const O_SYNC: ::c_int = 1052672; | ||
| 387 | +pub const O_RSYNC: ::c_int = 1052672; | ||
| 388 | +pub const O_DSYNC: ::c_int = 4096; | ||
| 389 | +pub const O_ASYNC: ::c_int = 0x2000; | ||
| 390 | + | ||
| 391 | +pub const TIOCGRS485: ::c_int = 0x542E; | ||
| 392 | +pub const TIOCSRS485: ::c_int = 0x542F; | ||
| 393 | + | ||
| 394 | +pub const SIGSTKSZ: ::size_t = 8192; | ||
| 395 | +pub const MINSIGSTKSZ: ::size_t = 2048; | ||
| 396 | + | ||
| 397 | +pub const ENAMETOOLONG: ::c_int = 36; | ||
| 398 | +pub const ENOLCK: ::c_int = 37; | ||
| 399 | +pub const ENOSYS: ::c_int = 38; | ||
| 400 | +pub const ENOTEMPTY: ::c_int = 39; | ||
| 401 | +pub const ELOOP: ::c_int = 40; | ||
| 402 | +pub const ENOMSG: ::c_int = 42; | ||
| 403 | +pub const EIDRM: ::c_int = 43; | ||
| 404 | +pub const ECHRNG: ::c_int = 44; | ||
| 405 | +pub const EL2NSYNC: ::c_int = 45; | ||
| 406 | +pub const EL3HLT: ::c_int = 46; | ||
| 407 | +pub const EL3RST: ::c_int = 47; | ||
| 408 | +pub const ELNRNG: ::c_int = 48; | ||
| 409 | +pub const EUNATCH: ::c_int = 49; | ||
| 410 | +pub const ENOCSI: ::c_int = 50; | ||
| 411 | +pub const EL2HLT: ::c_int = 51; | ||
| 412 | +pub const EBADE: ::c_int = 52; | ||
| 413 | +pub const EBADR: ::c_int = 53; | ||
| 414 | +pub const EXFULL: ::c_int = 54; | ||
| 415 | +pub const ENOANO: ::c_int = 55; | ||
| 416 | +pub const EBADRQC: ::c_int = 56; | ||
| 417 | +pub const EBADSLT: ::c_int = 57; | ||
| 418 | +pub const EMULTIHOP: ::c_int = 72; | ||
| 419 | +pub const EOVERFLOW: ::c_int = 75; | ||
| 420 | +pub const ENOTUNIQ: ::c_int = 76; | ||
| 421 | +pub const EBADFD: ::c_int = 77; | ||
| 422 | +pub const EBADMSG: ::c_int = 74; | ||
| 423 | +pub const EREMCHG: ::c_int = 78; | ||
| 424 | +pub const ELIBACC: ::c_int = 79; | ||
| 425 | +pub const ELIBBAD: ::c_int = 80; | ||
| 426 | +pub const ELIBSCN: ::c_int = 81; | ||
| 427 | +pub const ELIBMAX: ::c_int = 82; | ||
| 428 | +pub const ELIBEXEC: ::c_int = 83; | ||
| 429 | +pub const EILSEQ: ::c_int = 84; | ||
| 430 | +pub const ERESTART: ::c_int = 85; | ||
| 431 | +pub const ESTRPIPE: ::c_int = 86; | ||
| 432 | +pub const EUSERS: ::c_int = 87; | ||
| 433 | +pub const ENOTSOCK: ::c_int = 88; | ||
| 434 | +pub const EDESTADDRREQ: ::c_int = 89; | ||
| 435 | +pub const EMSGSIZE: ::c_int = 90; | ||
| 436 | +pub const EPROTOTYPE: ::c_int = 91; | ||
| 437 | +pub const ENOPROTOOPT: ::c_int = 92; | ||
| 438 | +pub const EPROTONOSUPPORT: ::c_int = 93; | ||
| 439 | +pub const ESOCKTNOSUPPORT: ::c_int = 94; | ||
| 440 | +pub const EOPNOTSUPP: ::c_int = 95; | ||
| 441 | +pub const EPFNOSUPPORT: ::c_int = 96; | ||
| 442 | +pub const EAFNOSUPPORT: ::c_int = 97; | ||
| 443 | +pub const EADDRINUSE: ::c_int = 98; | ||
| 444 | +pub const EADDRNOTAVAIL: ::c_int = 99; | ||
| 445 | +pub const ENETDOWN: ::c_int = 100; | ||
| 446 | +pub const ENETUNREACH: ::c_int = 101; | ||
| 447 | +pub const ENETRESET: ::c_int = 102; | ||
| 448 | +pub const ECONNABORTED: ::c_int = 103; | ||
| 449 | +pub const ECONNRESET: ::c_int = 104; | ||
| 450 | +pub const ENOBUFS: ::c_int = 105; | ||
| 451 | +pub const EISCONN: ::c_int = 106; | ||
| 452 | +pub const ENOTCONN: ::c_int = 107; | ||
| 453 | +pub const ESHUTDOWN: ::c_int = 108; | ||
| 454 | +pub const ETOOMANYREFS: ::c_int = 109; | ||
| 455 | +pub const ETIMEDOUT: ::c_int = 110; | ||
| 456 | +pub const ECONNREFUSED: ::c_int = 111; | ||
| 457 | +pub const EHOSTDOWN: ::c_int = 112; | ||
| 458 | +pub const EHOSTUNREACH: ::c_int = 113; | ||
| 459 | +pub const EALREADY: ::c_int = 114; | ||
| 460 | +pub const EINPROGRESS: ::c_int = 115; | ||
| 461 | +pub const ESTALE: ::c_int = 116; | ||
| 462 | +pub const EDQUOT: ::c_int = 122; | ||
| 463 | +pub const ENOMEDIUM: ::c_int = 123; | ||
| 464 | +pub const EMEDIUMTYPE: ::c_int = 124; | ||
| 465 | +pub const ECANCELED: ::c_int = 125; | ||
| 466 | +pub const ENOKEY: ::c_int = 126; | ||
| 467 | +pub const EKEYEXPIRED: ::c_int = 127; | ||
| 468 | +pub const EKEYREVOKED: ::c_int = 128; | ||
| 469 | +pub const EKEYREJECTED: ::c_int = 129; | ||
| 470 | +pub const EOWNERDEAD: ::c_int = 130; | ||
| 471 | +pub const ENOTRECOVERABLE: ::c_int = 131; | ||
| 472 | +pub const EHWPOISON: ::c_int = 133; | ||
| 473 | +pub const ERFKILL: ::c_int = 132; | ||
| 474 | + | ||
| 475 | +pub const SA_ONSTACK: ::c_int = 0x08000000; | ||
| 476 | +pub const SA_SIGINFO: ::c_int = 0x00000004; | ||
| 477 | +pub const SA_NOCLDWAIT: ::c_int = 0x00000002; | ||
| 478 | + | ||
| 479 | +pub const SIGCHLD: ::c_int = 17; | ||
| 480 | +pub const SIGBUS: ::c_int = 7; | ||
| 481 | +pub const SIGTTIN: ::c_int = 21; | ||
| 482 | +pub const SIGTTOU: ::c_int = 22; | ||
| 483 | +pub const SIGXCPU: ::c_int = 24; | ||
| 484 | +pub const SIGXFSZ: ::c_int = 25; | ||
| 485 | +pub const SIGVTALRM: ::c_int = 26; | ||
| 486 | +pub const SIGPROF: ::c_int = 27; | ||
| 487 | +pub const SIGWINCH: ::c_int = 28; | ||
| 488 | +pub const SIGUSR1: ::c_int = 10; | ||
| 489 | +pub const SIGUSR2: ::c_int = 12; | ||
| 490 | +pub const SIGCONT: ::c_int = 18; | ||
| 491 | +pub const SIGSTOP: ::c_int = 19; | ||
| 492 | +pub const SIGTSTP: ::c_int = 20; | ||
| 493 | +pub const SIGURG: ::c_int = 23; | ||
| 494 | +pub const SIGIO: ::c_int = 29; | ||
| 495 | +pub const SIGSYS: ::c_int = 31; | ||
| 496 | +pub const SIGSTKFLT: ::c_int = 16; | ||
| 497 | +pub const SIGPOLL: ::c_int = 29; | ||
| 498 | +pub const SIGPWR: ::c_int = 30; | ||
| 499 | +pub const SIG_SETMASK: ::c_int = 2; | ||
| 500 | +pub const SIG_BLOCK: ::c_int = 0x000000; | ||
| 501 | +pub const SIG_UNBLOCK: ::c_int = 0x01; | ||
| 502 | + | ||
| 503 | +pub const F_GETLK: ::c_int = 5; | ||
| 504 | +pub const F_GETOWN: ::c_int = 9; | ||
| 505 | +pub const F_SETLK: ::c_int = 6; | ||
| 506 | +pub const F_SETLKW: ::c_int = 7; | ||
| 507 | +pub const F_SETOWN: ::c_int = 8; | ||
| 508 | +pub const F_OFD_GETLK: ::c_int = 36; | ||
| 509 | +pub const F_OFD_SETLK: ::c_int = 37; | ||
| 510 | +pub const F_OFD_SETLKW: ::c_int = 38; | ||
| 511 | + | ||
| 512 | +pub const VEOF: usize = 4; | ||
| 513 | + | ||
| 514 | +pub const POLLWRNORM: ::c_short = 0x100; | ||
| 515 | +pub const POLLWRBAND: ::c_short = 0x200; | ||
| 516 | + | ||
| 517 | +pub const SOCK_STREAM: ::c_int = 1; | ||
| 518 | +pub const SOCK_DGRAM: ::c_int = 2; | ||
| 519 | +pub const SOL_SOCKET: ::c_int = 1; | ||
| 520 | +pub const SO_REUSEADDR: ::c_int = 2; | ||
| 521 | +pub const SO_TYPE: ::c_int = 3; | ||
| 522 | +pub const SO_ERROR: ::c_int = 4; | ||
| 523 | +pub const SO_DONTROUTE: ::c_int = 5; | ||
| 524 | +pub const SO_BROADCAST: ::c_int = 6; | ||
| 525 | +pub const SO_SNDBUF: ::c_int = 7; | ||
| 526 | +pub const SO_RCVBUF: ::c_int = 8; | ||
| 527 | +pub const SO_KEEPALIVE: ::c_int = 9; | ||
| 528 | +pub const SO_OOBINLINE: ::c_int = 10; | ||
| 529 | +pub const SO_NO_CHECK: ::c_int = 11; | ||
| 530 | +pub const SO_PRIORITY: ::c_int = 12; | ||
| 531 | +pub const SO_LINGER: ::c_int = 13; | ||
| 532 | +pub const SO_BSDCOMPAT: ::c_int = 14; | ||
| 533 | +pub const SO_REUSEPORT: ::c_int = 15; | ||
| 534 | +pub const SO_ACCEPTCONN: ::c_int = 30; | ||
| 535 | +pub const SO_SNDBUFFORCE: ::c_int = 32; | ||
| 536 | +pub const SO_RCVBUFFORCE: ::c_int = 33; | ||
| 537 | +pub const SO_PROTOCOL: ::c_int = 38; | ||
| 538 | +pub const SO_DOMAIN: ::c_int = 39; | ||
| 539 | + | ||
| 540 | +pub const MAP_ANON: ::c_int = 0x0020; | ||
| 541 | +pub const MAP_GROWSDOWN: ::c_int = 0x0100; | ||
| 542 | +pub const MAP_DENYWRITE: ::c_int = 0x0800; | ||
| 543 | +pub const MAP_EXECUTABLE: ::c_int = 0x01000; | ||
| 544 | +pub const MAP_LOCKED: ::c_int = 0x02000; | ||
| 545 | +pub const MAP_NORESERVE: ::c_int = 0x04000; | ||
| 546 | +pub const MAP_POPULATE: ::c_int = 0x08000; | ||
| 547 | +pub const MAP_NONBLOCK: ::c_int = 0x010000; | ||
| 548 | +pub const MAP_STACK: ::c_int = 0x020000; | ||
| 549 | +pub const MAP_HUGETLB: ::c_int = 0x040000; | ||
| 550 | +pub const MAP_SYNC : ::c_int = 0x080000; | ||
| 551 | + | ||
| 552 | +pub const RLIMIT_NLIMITS: ::c_int = 15; | ||
| 553 | +pub const TIOCINQ: ::c_int = ::FIONREAD; | ||
| 554 | +pub const MCL_CURRENT: ::c_int = 0x0001; | ||
| 555 | +pub const MCL_FUTURE: ::c_int = 0x0002; | ||
| 556 | +pub const CBAUD: ::tcflag_t = 0o0010017; | ||
| 557 | +pub const TAB1: ::c_int = 0x00000800; | ||
| 558 | +pub const TAB2: ::c_int = 0x00001000; | ||
| 559 | +pub const TAB3: ::c_int = 0x00001800; | ||
| 560 | +pub const CR1: ::c_int = 0x00000200; | ||
| 561 | +pub const CR2: ::c_int = 0x00000400; | ||
| 562 | +pub const CR3: ::c_int = 0x00000600; | ||
| 563 | +pub const FF1: ::c_int = 0x00008000; | ||
| 564 | +pub const BS1: ::c_int = 0x00002000; | ||
| 565 | +pub const VT1: ::c_int = 0x00004000; | ||
| 566 | +pub const VWERASE: usize = 14; | ||
| 567 | +pub const VREPRINT: usize = 12; | ||
| 568 | +pub const VSUSP: usize = 10; | ||
| 569 | +pub const VSTART: usize = 8; | ||
| 570 | +pub const VSTOP: usize = 9; | ||
| 571 | +pub const VDISCARD: usize = 13; | ||
| 572 | +pub const VTIME: usize = 5; | ||
| 573 | +pub const IXON: ::tcflag_t = 0x00000400; | ||
| 574 | +pub const IXOFF: ::tcflag_t = 0x00001000; | ||
| 575 | +pub const ONLCR: ::tcflag_t = 0x4; | ||
| 576 | +pub const CSIZE: ::tcflag_t = 0x00000030; | ||
| 577 | +pub const CS6: ::tcflag_t = 0x00000010; | ||
| 578 | +pub const CS7: ::tcflag_t = 0x00000020; | ||
| 579 | +pub const CS8: ::tcflag_t = 0x00000030; | ||
| 580 | +pub const CSTOPB: ::tcflag_t = 0x00000040; | ||
| 581 | +pub const CREAD: ::tcflag_t = 0x00000080; | ||
| 582 | +pub const PARENB: ::tcflag_t = 0x00000100; | ||
| 583 | +pub const PARODD: ::tcflag_t = 0x00000200; | ||
| 584 | +pub const HUPCL: ::tcflag_t = 0x00000400; | ||
| 585 | +pub const CLOCAL: ::tcflag_t = 0x00000800; | ||
| 586 | +pub const ECHOKE: ::tcflag_t = 0x00000800; | ||
| 587 | +pub const ECHOE: ::tcflag_t = 0x00000010; | ||
| 588 | +pub const ECHOK: ::tcflag_t = 0x00000020; | ||
| 589 | +pub const ECHONL: ::tcflag_t = 0x00000040; | ||
| 590 | +pub const ECHOPRT: ::tcflag_t = 0x00000400; | ||
| 591 | +pub const ECHOCTL: ::tcflag_t = 0x00000200; | ||
| 592 | +pub const ISIG: ::tcflag_t = 0x00000001; | ||
| 593 | +pub const ICANON: ::tcflag_t = 0x00000002; | ||
| 594 | +pub const PENDIN: ::tcflag_t = 0x00004000; | ||
| 595 | +pub const NOFLSH: ::tcflag_t = 0x00000080; | ||
| 596 | +pub const CIBAUD: ::tcflag_t = 0o02003600000; | ||
| 597 | +pub const CBAUDEX: ::tcflag_t = 0o010000; | ||
| 598 | +pub const VSWTC: usize = 7; | ||
| 599 | +pub const OLCUC: ::tcflag_t = 0o000002; | ||
| 600 | +pub const NLDLY: ::tcflag_t = 0o000400; | ||
| 601 | +pub const CRDLY: ::tcflag_t = 0o003000; | ||
| 602 | +pub const TABDLY: ::tcflag_t = 0o014000; | ||
| 603 | +pub const BSDLY: ::tcflag_t = 0o020000; | ||
| 604 | +pub const FFDLY: ::tcflag_t = 0o100000; | ||
| 605 | +pub const VTDLY: ::tcflag_t = 0o040000; | ||
| 606 | +pub const XTABS: ::tcflag_t = 0o014000; | ||
| 607 | +pub const B57600: ::speed_t = 0o010001; | ||
| 608 | +pub const B115200: ::speed_t = 0o010002; | ||
| 609 | +pub const B230400: ::speed_t = 0o010003; | ||
| 610 | +pub const B460800: ::speed_t = 0o010004; | ||
| 611 | +pub const B500000: ::speed_t = 0o010005; | ||
| 612 | +pub const B576000: ::speed_t = 0o010006; | ||
| 613 | +pub const B921600: ::speed_t = 0o010007; | ||
| 614 | +pub const B1000000: ::speed_t = 0o010010; | ||
| 615 | +pub const B1152000: ::speed_t = 0o010011; | ||
| 616 | +pub const B1500000: ::speed_t = 0o010012; | ||
| 617 | +pub const B2000000: ::speed_t = 0o010013; | ||
| 618 | +pub const B2500000: ::speed_t = 0o010014; | ||
| 619 | +pub const B3000000: ::speed_t = 0o010015; | ||
| 620 | +pub const B3500000: ::speed_t = 0o010016; | ||
| 621 | +pub const B4000000: ::speed_t = 0o010017; | ||
| 622 | + | ||
| 623 | +pub const FIOCLEX: ::c_int = 0x5451; | ||
| 624 | +pub const FIONCLEX: ::c_int = 0x5450; | ||
| 625 | +pub const FIONBIO: ::c_int = 0x5421; | ||
| 626 | +pub const EDEADLK: ::c_int = 35; | ||
| 627 | +pub const EDEADLOCK: ::c_int = EDEADLK; | ||
| 628 | +pub const SO_PASSCRED: ::c_int = 16; | ||
| 629 | +pub const SO_PEERCRED: ::c_int = 17; | ||
| 630 | +pub const SO_RCVLOWAT: ::c_int = 18; | ||
| 631 | +pub const SO_SNDLOWAT: ::c_int = 19; | ||
| 632 | +pub const SO_RCVTIMEO: ::c_int = 20; | ||
| 633 | +pub const SO_SNDTIMEO: ::c_int = 21; | ||
| 634 | +pub const EXTPROC: ::tcflag_t = 0x00010000; | ||
| 635 | +pub const VEOL: usize = 11; | ||
| 636 | +pub const VEOL2: usize = 16; | ||
| 637 | +pub const VMIN: usize = 6; | ||
| 638 | +pub const IEXTEN: ::tcflag_t = 0x00008000; | ||
| 639 | +pub const TOSTOP: ::tcflag_t = 0x00000100; | ||
| 640 | +pub const FLUSHO: ::tcflag_t = 0x00001000; | ||
| 641 | +pub const TCGETS: ::c_int = 0x5401; | ||
| 642 | +pub const TCSETS: ::c_int = 0x5402; | ||
| 643 | +pub const TCSETSW: ::c_int = 0x5403; | ||
| 644 | +pub const TCSETSF: ::c_int = 0x5404; | ||
| 645 | +pub const TCGETA: ::c_int = 0x5405; | ||
| 646 | +pub const TCSETA: ::c_int = 0x5406; | ||
| 647 | +pub const TCSETAW: ::c_int = 0x5407; | ||
| 648 | +pub const TCSETAF: ::c_int = 0x5408; | ||
| 649 | +pub const TCSBRK: ::c_int = 0x5409; | ||
| 650 | +pub const TCXONC: ::c_int = 0x540A; | ||
| 651 | +pub const TCFLSH: ::c_int = 0x540B; | ||
| 652 | +pub const TIOCGSOFTCAR: ::c_int = 0x5419; | ||
| 653 | +pub const TIOCSSOFTCAR: ::c_int = 0x541A; | ||
| 654 | +pub const TIOCLINUX: ::c_int = 0x541C; | ||
| 655 | +pub const TIOCGSERIAL: ::c_int = 0x541E; | ||
| 656 | +pub const TIOCEXCL: ::c_int = 0x540C; | ||
| 657 | +pub const TIOCNXCL: ::c_int = 0x540D; | ||
| 658 | +pub const TIOCSCTTY: ::c_int = 0x540E; | ||
| 659 | +pub const TIOCGPGRP: ::c_int = 0x540F; | ||
| 660 | +pub const TIOCSPGRP: ::c_int = 0x5410; | ||
| 661 | +pub const TIOCOUTQ: ::c_int = 0x5411; | ||
| 662 | +pub const TIOCSTI: ::c_int = 0x5412; | ||
| 663 | +pub const TIOCGWINSZ: ::c_int = 0x5413; | ||
| 664 | +pub const TIOCSWINSZ: ::c_int = 0x5414; | ||
| 665 | +pub const TIOCMGET: ::c_int = 0x5415; | ||
| 666 | +pub const TIOCMBIS: ::c_int = 0x5416; | ||
| 667 | +pub const TIOCMBIC: ::c_int = 0x5417; | ||
| 668 | +pub const TIOCMSET: ::c_int = 0x5418; | ||
| 669 | +pub const FIONREAD: ::c_int = 0x541B; | ||
| 670 | +pub const TIOCCONS: ::c_int = 0x541D; | ||
| 671 | + | ||
| 672 | +pub const TIOCM_LE: ::c_int = 0x001; | ||
| 673 | +pub const TIOCM_DTR: ::c_int = 0x002; | ||
| 674 | +pub const TIOCM_RTS: ::c_int = 0x004; | ||
| 675 | +pub const TIOCM_ST: ::c_int = 0x008; | ||
| 676 | +pub const TIOCM_SR: ::c_int = 0x010; | ||
| 677 | +pub const TIOCM_CTS: ::c_int = 0x020; | ||
| 678 | +pub const TIOCM_CAR: ::c_int = 0x040; | ||
| 679 | +pub const TIOCM_RNG: ::c_int = 0x080; | ||
| 680 | +pub const TIOCM_DSR: ::c_int = 0x100; | ||
| 681 | +pub const TIOCM_CD: ::c_int = TIOCM_CAR; | ||
| 682 | +pub const TIOCM_RI: ::c_int = TIOCM_RNG; | ||
| 683 | + | ||
| 684 | +extern "C" { | ||
| 685 | + pub fn ioctl(fd: ::c_int, request: ::c_int, ...) -> ::c_int; | ||
| 686 | +} | ||
| 687 | -- | ||
| 688 | 2.20.1 | ||
| 689 | |||
diff --git a/meta/recipes-devtools/rust/libstd-rs/0004-Update-checksums-for-modified-files-for-rust.patch b/meta/recipes-devtools/rust/libstd-rs/0004-Update-checksums-for-modified-files-for-rust.patch deleted file mode 100644 index 6e242db68f..0000000000 --- a/meta/recipes-devtools/rust/libstd-rs/0004-Update-checksums-for-modified-files-for-rust.patch +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | From 6dc0a4273b01ec9492af4965f47450a8b8a7c202 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Ralf Anton Beier <ralf_beier@me.com> | ||
| 3 | Date: Sun, 8 Aug 2021 11:19:24 +0200 | ||
| 4 | Subject: [PATCH 4/4] Update checksums for modified files for rust | ||
| 5 | |||
| 6 | Upstream-Status: Inappropriate [previous patches need to be upstreamed] | ||
| 7 | Signed-off-by: Ralf Anton Beier <ralf_beier@me.com> | ||
| 8 | --- | ||
| 9 | vendor/libc-0.2.106/.cargo-checksum.json | 2 +- | ||
| 10 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 11 | |||
| 12 | --- a/vendor/libc-0.2.106/.cargo-checksum.json | ||
| 13 | +++ b/vendor/libc-0.2.106/.cargo-checksum.json | ||
| 14 | @@ -1 +1 @@ | ||
| 15 | -{"files":{"CONTRIBUTING.md":"752eea5a703d11b485c6b5f195f51bd2c79aa5159b619ce09555c779e1fb586b","Cargo.toml":"cef5103f1c20b2e9090a6bbc9b1d9d44746851f60a8ed69b94d52e64133eb98a","LICENSE-APACHE":"a60eea817514531668d7e00765731449fe14d059d3249e0bc93b36de45f759f2","LICENSE-MIT":"a8d47ff51ca256f56a8932dba07660672dbfe3004257ca8de708aac1415937a1","README.md":"8228847944f1332882fbb00275b6f30e4a8aad08a13569c25d52cac012cc2a47","build.rs":"8e0e8d33cc9e7c25cde75c2b502420f943266a681024169f94084774b422681d","rustfmt.toml":"eaa2ea84fc1ba0359b77680804903e07bb38d257ab11986b95b158e460f787b2","src/fixed_width_ints.rs":"34c60f12ec5eeb90f13ec3b954427532111c2446e69617616a97aefc1086a9f1","src/fuchsia/aarch64.rs":"378776a9e40766154a54c94c2a7b4675b5c302a38e6e42da99e67bfbaee60e56","src/fuchsia/align.rs":"ae1cf8f011a99737eabeb14ffff768e60f13b13363d7646744dbb0f443dab3d6","src/fuchsia/mod.rs":"520300ff260d377930f2f456135ec9a3ac7740a949ce7bf5269c0dc60d56c0df","src/fuchsia/no_align.rs":"303f3f1b255e0088b5715094353cf00476131d8e94e6aebb3f469557771c8b8a","src/fuchsia/x86_64.rs":"93a3632b5cf67d2a6bcb7dc0a558605252d5fe689e0f38d8aa2ec5852255ac87","src/hermit/aarch64.rs":"86048676e335944c37a63d0083d0f368ae10ceccefeed9debb3bbe08777fc682","src/hermit/mod.rs":"d3bfce41e4463d4be8020a2d063c9bfa8b665f45f1cc6cbf3163f5d01e7cb21f","src/hermit/x86_64.rs":"ab832b7524e5fb15c49ff7431165ab1a37dc4667ae0b58e8306f4c539bfa110c","src/lib.rs":"4cf1ca3940157caa735a5cdb478c450d1648669a87d7311cd7c4928c273bd273","src/macros.rs":"7844312c233a6889fa15395fe3106f6a8f6229211104a92f33ea3c9536eef763","src/psp.rs":"dd31aabd46171d474ec5828372e28588935120e7355c90c105360d8fa9264c1c","src/sgx.rs":"16a95cdefc81c5ee00d8353a60db363c4cc3e0f75abcd5d0144723f2a306ed1b","src/solid/aarch64.rs":"8cdae0cc37c43dabd4253a534e700bec6b6a57293c0c8e36c9ce16675d16799a","src/solid/arm.rs":"852b58a0837fde089cb9b5af131bf653daeb8c726f7540032756db8b7d4f8149","src/solid/mod.rs":"98dc29c3e5773318ba258a4a2b7407f25aa52d40885a0024fbe43676fe54d14b","src/switch.rs":"9da3dd39b3de45a7928789926e8572d00e1e11a39e6f7289a1349aadce90edba","src/unix/align.rs":"2cdc7c826ef7ae61f5171c5ae8c445a743d86f1a7f2d9d7e4ceeec56d6874f65","src/unix/bsd/apple/b32/align.rs":"ec833a747866fe19ca2d9b4d3c9ff0385faba5edf4bd0d15fa68884c40b0e26c","src/unix/bsd/apple/b32/mod.rs":"2546ad3eb6aecb95f916648bc63264117c92b4b4859532b34cb011e4c75a5a72","src/unix/bsd/apple/b64/aarch64/align.rs":"f0c321265dd7671f16106b84951ac7dd77ed2e65c6623cbf2d29e76531984770","src/unix/bsd/apple/b64/aarch64/mod.rs":"44c217a4f263afe7a97435de9323d20a96c37836f899ca0925306d4b7e073c27","src/unix/bsd/apple/b64/align.rs":"ec833a747866fe19ca2d9b4d3c9ff0385faba5edf4bd0d15fa68884c40b0e26c","src/unix/bsd/apple/b64/mod.rs":"f5e278a1af7fb358891d1c9be4eb7e815aaca0c5cb738d0c3604ba2208a856f7","src/unix/bsd/apple/b64/x86_64/align.rs":"ec833a747866fe19ca2d9b4d3c9ff0385faba5edf4bd0d15fa68884c40b0e26c","src/unix/bsd/apple/b64/x86_64/mod.rs":"8c87c5855038aae5d433c8f5eb3b29b0a175879a0245342b3bfd83bdf4cfd936","src/unix/bsd/apple/mod.rs":"15560099a9ee54cd97b3485c4e5a380af5352373b952a876aeb9476f2acdad04","src/unix/bsd/freebsdlike/dragonfly/errno.rs":"8295b8bb0dfd38d2cdb4d9192cdeeb534cc6c3b208170e64615fa3e0edb3e578","src/unix/bsd/freebsdlike/dragonfly/mod.rs":"d07c9769835178783820f48e00312f215ee9fa4c62c54000280c52c9906c63c2","src/unix/bsd/freebsdlike/freebsd/aarch64.rs":"2a215bd6136b8617aacedf9be738ccee94da9d29b418e9a78101d6291c182352","src/unix/bsd/freebsdlike/freebsd/arm.rs":"59d6a670eea562fb87686e243e0a84603d29a2028a3d4b3f99ccc01bd04d2f47","src/unix/bsd/freebsdlike/freebsd/freebsd11/b64.rs":"9808d152c1196aa647f1b0f0cf84dac8c930da7d7f897a44975545e3d9d17681","src/unix/bsd/freebsdlike/freebsd/freebsd11/mod.rs":"bf0a994e2079b8aad9da5efd3a3b9a7194a53ae60887a25c57964fb68499e847","src/unix/bsd/freebsdlike/freebsd/freebsd12/b64.rs":"61cbe45f8499bedb168106b686d4f8239472f25c7553b069eec2afe197ff2df6","src/unix/bsd/freebsdlike/freebsd/freebsd12/mod.rs":"295b3e3b67394f731d4e88d169e3d3d1d80026b99898745cd0d1d163f085ff61","src/unix/bsd/freebsdlike/freebsd/freebsd12/x86_64.rs":"2df36a7f122f6d6e5753cfb4d22e915cc80f6bc91c0161b3daae55a481bfd052","src/unix/bsd/freebsdlike/freebsd/freebsd13/b64.rs":"61cbe45f8499bedb168106b686d4f8239472f25c7553b069eec2afe197ff2df6","src/unix/bsd/freebsdlike/freebsd/freebsd13/mod.rs":"df003cfb7794fe4ee8df224fbc62e6427969ec369cd7cfda0b448d5bcbc1e228","src/unix/bsd/freebsdlike/freebsd/freebsd13/x86_64.rs":"2df36a7f122f6d6e5753cfb4d22e915cc80f6bc91c0161b3daae55a481bfd052","src/unix/bsd/freebsdlike/freebsd/mod.rs":"527fd23d6087af6131f2f4001b86f464b08b6255c5f9139f2c3a28de24301e72","src/unix/bsd/freebsdlike/freebsd/powerpc.rs":"9ca3f82f88974e6db5569f2d76a5a3749b248a31747a6c0da5820492bdfeca42","src/unix/bsd/freebsdlike/freebsd/powerpc64.rs":"2dae3ecc87eac3b11657aa98915def55fc4b5c0de11fe26aae23329a54628a9a","src/unix/bsd/freebsdlike/freebsd/x86.rs":"c5005e3249eb7c93cfbac72a9e9272320d80ce7983da990ceb05a447f59a02c5","src/unix/bsd/freebsdlike/freebsd/x86_64/align.rs":"0e1f69a88fca1c32874b1daf5db3d446fefbe518dca497f096cc9168c39dde70","src/unix/bsd/freebsdlike/freebsd/x86_64/mod.rs":"c3a0111252e201c172b99e7d9cbee4cf088d3dd47995110e819f04276bccd198","src/unix/bsd/freebsdlike/mod.rs":"cd435ad58e743a9e83c6c91f9ed3f4c4c31e587d39e0d8ee5cc905f513623835","src/unix/bsd/mod.rs":"2fed08973739d7f6a7412b204724af64b1a915c712689c250cf9a08263ba05ff","src/unix/bsd/netbsdlike/mod.rs":"4e9da54e541773c7ad4cca9dade1df00f28f2fdac3f8df5957f4c74b7e082344","src/unix/bsd/netbsdlike/netbsd/aarch64.rs":"65dcb58d11e8d8028401a9d07ca3eb4cb4f053e04249cc877353449d84ccc4cb","src/unix/bsd/netbsdlike/netbsd/arm.rs":"58cdbb70b0d6f536551f0f3bb3725d2d75c4690db12c26c034e7d6ec4a924452","src/unix/bsd/netbsdlike/netbsd/mod.rs":"e4b0dfd3004b3a5b4fc4def43a6a389bae11a3ac8a3c604c2fa09ee1c8ae7030","src/unix/bsd/netbsdlike/netbsd/powerpc.rs":"ee7ff5d89d0ed22f531237b5059aa669df93a3b5c489fa641465ace8d405bf41","src/unix/bsd/netbsdlike/netbsd/sparc64.rs":"9489f4b3e4566f43bb12dfb92238960613dac7f6a45cc13068a8d152b902d7d9","src/unix/bsd/netbsdlike/netbsd/x86.rs":"20692320e36bfe028d1a34d16fe12ca77aa909cb02bda167376f98f1a09aefe7","src/unix/bsd/netbsdlike/netbsd/x86_64.rs":"1afe5ef46b14397cdd68664b5b232e4f5b035b6db1d4cf411c899d51ebca9f30","src/unix/bsd/netbsdlike/openbsd/aarch64.rs":"dd91931d373b7ecaf6e2de25adadee10d16fa9b12c2cbacdff3eb291e1ba36af","src/unix/bsd/netbsdlike/openbsd/mod.rs":"ea4a056a0b78a4d73d359d44454ad96a4465872a916bd2a19b955fbc9070ca29","src/unix/bsd/netbsdlike/openbsd/sparc64.rs":"d04fd287afbaa2c5df9d48c94e8374a532a3ba491b424ddf018270c7312f4085","src/unix/bsd/netbsdlike/openbsd/x86.rs":"6f7f5c4fde2a2259eb547890cbd86570cea04ef85347d7569e94e679448bec87","src/unix/bsd/netbsdlike/openbsd/x86_64.rs":"d31db31630289c85af3339dbe357998a21ca584cbae31607448fe2cf7675a4e1","src/unix/haiku/b32.rs":"69ae47fc52c6880e85416b4744500d5655c9ec6131cb737f3b649fceaadce15a","src/unix/haiku/b64.rs":"73e64db09275a8da8d50a13cce2cfa2b136036ddf3a930d2939f337fc995900b","src/unix/haiku/mod.rs":"f0219c43860134e3134361477a202e6c561d6543899377fbdbc86f442bc2415f","src/unix/haiku/native.rs":"44855f52906f607de137fc4baa8c6b1b9a26baaa666f25d5f7a7ec5e017c8be6","src/unix/haiku/x86_64.rs":"3ec3aeeb7ed208b8916f3e32d42bfd085ff5e16936a1a35d9a52789f043b7237","src/unix/hermit/aarch64.rs":"86048676e335944c37a63d0083d0f368ae10ceccefeed9debb3bbe08777fc682","src/unix/hermit/mod.rs":"859814f5df89e28fd4b345db399d181e11e7ed413841b6ff703a1fcbdbf013ae","src/unix/hermit/x86_64.rs":"ab832b7524e5fb15c49ff7431165ab1a37dc4667ae0b58e8306f4c539bfa110c","src/unix/linux_like/android/b32/arm.rs":"433c1530f602cc5ed26610c58055dde0c4ceea5e00150063b24ddc60768332a4","src/unix/linux_like/android/b32/mod.rs":"d971b98530a96f5892f98e1edc3133cf278d1b3939d77ab0a27a6323e0961715","src/unix/linux_like/android/b32/x86/align.rs":"812914e4241df82e32b12375ca3374615dc3a4bdd4cf31f0423c5815320c0dab","src/unix/linux_like/android/b32/x86/mod.rs":"8388bd3a0fcb5636bf965eee6dc95ae6860b85a2b555b387c868aa4d4e01ec89","src/unix/linux_like/android/b64/aarch64/align.rs":"2179c3b1608fa4bf68840482bfc2b2fa3ee2faf6fcae3770f9e505cddca35c7b","src/unix/linux_like/android/b64/aarch64/mod.rs":"8fe667d2b14abc5ac8aad32e16c3da24350471d8156eaea9ab4989f73dd9f9fc","src/unix/linux_like/android/b64/mod.rs":"d7bbbadafdb2cb2ff8e9cde3d89a03b9facaabb6b2d45705225d3ece1c5cce37","src/unix/linux_like/android/b64/x86_64/align.rs":"7169d07a9fd4716f7512719aec9fda5d8bed306dc0720ffc1b21696c9951e3c6","src/unix/linux_like/android/b64/x86_64/mod.rs":"06b22dc184e85a988ab969c75cadc52b9878faeab0eb9d21215878c95fe07c19","src/unix/linux_like/android/mod.rs":"7066335e80984db42a80f56abdbda048f0773f0bdeb72f530e989d683d61ad8d","src/unix/linux_like/emscripten/align.rs":"86c95cbed7a7161b1f23ee06843e7b0e2340ad92b2cb86fe2a8ef3e0e8c36216","src/unix/linux_like/emscripten/mod.rs":"b71d37106750f57bc2dae4e9bcb473ff098ef48235827e41a1687a39825f0aa4","src/unix/linux_like/emscripten/no_align.rs":"0128e4aa721a9902754828b61b5ec7d8a86619983ed1e0544a85d35b1051fad6","src/unix/linux_like/linux/align.rs":"213e70ebed2703e14a9cf17666b21ecbf180b7bff7fa22fdbb36dbbd52df326d","src/unix/linux_like/linux/arch/generic/mod.rs":"ff1fe8fad4ea15d9bec3db25efcfcb4939190c5189f86cfa4d05825aa8c10956","src/unix/linux_like/linux/arch/mips/mod.rs":"e4a980b002105aaa057eb6568e1e2c6168ade5c00e13a31ef67e316ddffdb900","src/unix/linux_like/linux/arch/mod.rs":"466a29622e47c6c7f1500682b2eb17f5566dd81b322cd6348f0fdd355cec593a","src/unix/linux_like/linux/arch/powerpc/mod.rs":"1789eb5b41f75c29239795124a4a7cdcf7c8d213b88cf581b2f5bda08d7cf15b","src/unix/linux_like/linux/arch/sparc/mod.rs":"ded708124ee610267d011dee31fb02d1ec697c334aa822776ec95a7ddf6fc541","src/unix/linux_like/linux/gnu/align.rs":"e4a3c27fe20a57b8d612c34cb05bc70646edb5cec7251957315afa53a7b9f936","src/unix/linux_like/linux/gnu/b32/arm/align.rs":"3fed009dc9af3cc81be7087da9d2d7d1f39845e4497e290259c5cdbae25f039d","src/unix/linux_like/linux/gnu/b32/arm/mod.rs":"07adf9f4b96854062db518aaf08521fde0ad4a21a5c049efccba437bd97b2b5a","src/unix/linux_like/linux/gnu/b32/mips/align.rs":"429fb5e005cb7143602d430098b6ebfb7d360685b194f333dfd587472ae954ee","src/unix/linux_like/linux/gnu/b32/mips/mod.rs":"1cb5c0c9df3af2bbe131a91593583259fac9118931744c8435e197a394eb0462","src/unix/linux_like/linux/gnu/b32/mod.rs":"794dbcbae7dae8fd6b0b814573243197ceb532b56ef0772ad86b4b401478fcd9","src/unix/linux_like/linux/gnu/b32/powerpc.rs":"0cd7348badb9c4f8a0db31a2503b30c456a2bfcc7a0e5919762b1e12f912c5ad","src/unix/linux_like/linux/gnu/b32/riscv32/mod.rs":"ee5145a383386b716605a8d1ff3df212d418aae1aa1f37d2307d4f9cd1a08e99","src/unix/linux_like/linux/gnu/b32/sparc/align.rs":"21adbed27df73e2d1ed934aaf733a643003d7baf2bde9c48ea440895bcca6d41","src/unix/linux_like/linux/gnu/b32/sparc/mod.rs":"1bcec269a8416ccc48a384ca5765eaaa23f30f39f32311f50008ef4eeadafb2f","src/unix/linux_like/linux/gnu/b32/x86/align.rs":"e4bafdc4a519a7922a81b37a62bbfd1177a2f620890eef8f1fbc47162e9eb413","src/unix/linux_like/linux/gnu/b32/x86/mod.rs":"5317dbf2323577b89370bbee3894882b89d8333176db4f7b271ddc2f036ef43c","src/unix/linux_like/linux/gnu/b64/aarch64/align.rs":"2179c3b1608fa4bf68840482bfc2b2fa3ee2faf6fcae3770f9e505cddca35c7b","src/unix/linux_like/linux/gnu/b64/aarch64/ilp32.rs":"21a21503ef2e095f4371044915d4bfb07a8578011cb5c713cd9f45947b0b5730","src/unix/linux_like/linux/gnu/b64/aarch64/lp64.rs":"e78c3cd197f44832338b414d1a9bc0d194f44c74db77bd7bf830c1fff62b2690","src/unix/linux_like/linux/gnu/b64/aarch64/mod.rs":"c3730792dabcc166d8fd22929ef2633d49bc626875382dfcd401e8e125fb7a84","src/unix/linux_like/linux/gnu/b64/mips64/align.rs":"7169d07a9fd4716f7512719aec9fda5d8bed306dc0720ffc1b21696c9951e3c6","src/unix/linux_like/linux/gnu/b64/mips64/mod.rs":"68bcb71bbfccb4e8648948e494366d94767ce96f36daab9c1329375cdd32a459","src/unix/linux_like/linux/gnu/b64/mod.rs":"6336065423c26b59681fd2ce77f1117ea36af13e163fdadaefd108bd8191e8c8","src/unix/linux_like/linux/gnu/b64/powerpc64/align.rs":"e29c4868bbecfa4a6cd8a2ad06193f3bbc78a468cc1dc9df83f002f1268130d9","src/unix/linux_like/linux/gnu/b64/powerpc64/mod.rs":"dbb8905e363ed4a2dfb984554ad9b6389d27f6a2d599ec2d80e38a6c7551a019","src/unix/linux_like/linux/gnu/b64/riscv64/mod.rs":"5b982c41097f4f91adcb0968290afeccb27dce1695a261c964d34ef85df87cf4","src/unix/linux_like/linux/gnu/b64/s390x.rs":"a9484dfd3c7ca1174537957bef997c3ba7ea41989cdf61ede22b1bbc45a667bf","src/unix/linux_like/linux/gnu/b64/sparc64/align.rs":"e29c4868bbecfa4a6cd8a2ad06193f3bbc78a468cc1dc9df83f002f1268130d9","src/unix/linux_like/linux/gnu/b64/sparc64/mod.rs":"26fda11bdce99372c2c246e60866b56d98beb9fb49a2f6b69347ecfd03d18255","src/unix/linux_like/linux/gnu/b64/x86_64/align.rs":"7169d07a9fd4716f7512719aec9fda5d8bed306dc0720ffc1b21696c9951e3c6","src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs":"5a5ce7c5c92f60d8900dce63d363a38f3126aaf5be981710e172bec96ef95ac6","src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs":"f775ac2b754f90b63053fe22afe1d19d306b5404995568d6805baa9249fb617f","src/unix/linux_like/linux/gnu/b64/x86_64/x32.rs":"4ba1b58468f55254717366f50fdfd3e4114fde6dc442a56681926c4d7e5b6b0d","src/unix/linux_like/linux/gnu/mod.rs":"af3590c392bd06394cb307ccb993e66f53de7e2a0211c689dbb1845220475445","src/unix/linux_like/linux/gnu/no_align.rs":"9cd223135de75315840ff9c3fd5441ba1cb632b96b5c85a76f8316c86653db25","src/unix/linux_like/linux/mod.rs":"d4d754e571d864b356a9f7d04b378ba491ccc6281f01ae3da5a1c052dae67554","src/unix/linux_like/linux/musl/b32/arm/align.rs":"3e8ac052c1043764776b54c93ba4260e061df998631737a897d9d47d54f7b80c","src/unix/linux_like/linux/musl/b32/arm/mod.rs":"6255abe2ee04986832d12b7b2190589580f2a43e9bfb285b32b5747227f62727","src/unix/linux_like/linux/musl/b32/hexagon.rs":"a8811791809672be8338e6e27d1c4fcf383c2f26585be8bf9ab2923b219de032","src/unix/linux_like/linux/musl/b32/mips/align.rs":"429fb5e005cb7143602d430098b6ebfb7d360685b194f333dfd587472ae954ee","src/unix/linux_like/linux/musl/b32/mips/mod.rs":"b9e9ff42363ebbb884ddf6445129ec4164471df45846874fc08f5f458e659254","src/unix/linux_like/linux/musl/b32/mod.rs":"8ede3985e6243882814ce91e8ce543e7edbafc0cee5932816072b6f14207a671","src/unix/linux_like/linux/musl/b32/powerpc.rs":"4592dc5f1f2fe888dfef85fa862d42d168e73a2c6f4fc052b58287d0f4d4ffcd","src/unix/linux_like/linux/musl/b32/x86/align.rs":"08e77fbd7435d7dec2ff56932433bece3f02e47ce810f89004a275a86d39cbe1","src/unix/linux_like/linux/musl/b32/x86/mod.rs":"a19a8decfab185af3cebd34aae4b15082e7552be573904b8c1a3f0c0e493ef34","src/unix/linux_like/linux/musl/b64/aarch64/align.rs":"798a9229d70ce235394f2dd625f6c4c1e10519a94382dc5b091952b638ae2928","src/unix/linux_like/linux/musl/b64/aarch64/mod.rs":"a73035c6d9b776f13b839008e15c04c2c53455571efd06664affcb047e457112","src/unix/linux_like/linux/musl/b64/mips64.rs":"2744895451f3a777fbe54f7f2695be53310b965fd62084c9b7e9121c7fe28346","src/unix/linux_like/linux/musl/b64/mod.rs":"d18abc0aeba2e26342bf3416a4dba0836db2bb0ee013b0a39629475cf8640289","src/unix/linux_like/linux/musl/b64/powerpc64.rs":"e5a55525b42493923956d668f978fb45e22d51deea00ce5edbfddf76ff19c741","src/unix/linux_like/linux/musl/b64/s390x.rs":"03dfec6794d93cb31a7c52b2d53a0973755168f91f8fa437cc5dbd54882c8ee7","src/unix/linux_like/linux/musl/b64/x86_64/align.rs":"7169d07a9fd4716f7512719aec9fda5d8bed306dc0720ffc1b21696c9951e3c6","src/unix/linux_like/linux/musl/b64/x86_64/mod.rs":"0dd168f5a6881f32e5239fb312b23cf137b800d0ff323286a92c8a2c382b5456","src/unix/linux_like/linux/musl/mod.rs":"55ccd71342276ccb4c441a4bc2772aebfd163af299669b658c6c8c6add331ec3","src/unix/linux_like/linux/no_align.rs":"5ed04c53bf9d27da9b4d65ba7625c6ac53330162683d1b3df98950caafa3507b","src/unix/linux_like/linux/uclibc/align.rs":"9ed16138d8e439bd90930845a65eafa7ebd67366e6bf633936d44014f6e4c959","src/unix/linux_like/linux/uclibc/arm/align.rs":"e4a3c27fe20a57b8d612c34cb05bc70646edb5cec7251957315afa53a7b9f936","src/unix/linux_like/linux/uclibc/arm/mod.rs":"1e3bf809508b5872949136859bf48ddf58b7d24ae9f0b663e79f0efd1aaeb6a6","src/unix/linux_like/linux/uclibc/arm/no_align.rs":"9cd223135de75315840ff9c3fd5441ba1cb632b96b5c85a76f8316c86653db25","src/unix/linux_like/linux/uclibc/mips/mips32/align.rs":"e4a3c27fe20a57b8d612c34cb05bc70646edb5cec7251957315afa53a7b9f936","src/unix/linux_like/linux/uclibc/mips/mips32/mod.rs":"fa4102d9a596d90de604ce2962b0e64f184dfbf10552a4c3ecf28f12d4704379","src/unix/linux_like/linux/uclibc/mips/mips32/no_align.rs":"9cd223135de75315840ff9c3fd5441ba1cb632b96b5c85a76f8316c86653db25","src/unix/linux_like/linux/uclibc/mips/mips64/align.rs":"a7bdcb18a37a2d91e64d5fad83ea3edc78f5412adb28f77ab077dbb26dd08b2d","src/unix/linux_like/linux/uclibc/mips/mips64/mod.rs":"e3085ba56cfbc528d7c3c55065880603238c333b6047ef51c58177508a487fcd","src/unix/linux_like/linux/uclibc/mips/mips64/no_align.rs":"4a18e3875698c85229599225ac3401a2a40da87e77b2ad4ef47c6fcd5a24ed30","src/unix/linux_like/linux/uclibc/mips/mod.rs":"a2877679fef0f14f54a89ccbc41fb02f0c25bf6e536f9eb2cb2fa437e1d3f739","src/unix/linux_like/linux/uclibc/mod.rs":"82d504d3aa12cb0f7933980f81c4708fa6e070d4c57efdf407f2de05b71bc06d","src/unix/linux_like/linux/uclibc/no_align.rs":"3f28637046524618adaa1012e26cb7ffe94b9396e6b518cccdc69d59f274d709","src/unix/linux_like/linux/uclibc/x86_64/l4re.rs":"024eba5753e852dbdd212427351affe7e83f9916c1864bce414d7aa2618f192e","src/unix/linux_like/linux/uclibc/x86_64/mod.rs":"66e8f5b7509a6e638b8b904906f89badbab0da8fb5b602d07ebd88649c4b961a","src/unix/linux_like/linux/uclibc/x86_64/other.rs":"42c3f71e58cabba373f6a55a623f3c31b85049eb64824c09c2b082b3b2d6a0a8","src/unix/linux_like/mod.rs":"ffce98bdd208fd9d335c65feafbf0d9742bea67c7eec1ee48657f292132ec3f0","src/unix/mod.rs":"6b2b57833e37cd3231944696c8216eb587a2a68069346150cf321153eaf04d03","src/unix/newlib/aarch64/mod.rs":"bb269c1468a9676442554600e87417079a787fe6220dfc23b3109639259e8710","src/unix/newlib/align.rs":"28aaf87fafbc6b312622719d472d8cf65f9e5467d15339df5f73e66d8502b28a","src/unix/newlib/arm/mod.rs":"c71be856bfd7f576b2db28af9f680211cbe6c1cac7d537bbc8020b39591af07c","src/unix/newlib/espidf/mod.rs":"c198cb4beccdab483be61c102da74dc51ac80f766797e33021f3110394ed5a3d","src/unix/newlib/mod.rs":"d7271c13748be08305d36f9af6f41f6950a7a1d6d4382149194a35d5fe2090de","src/unix/newlib/no_align.rs":"e0743b2179495a9514bc3a4d1781e492878c4ec834ee0085d0891dd1712e82fb","src/unix/newlib/powerpc/mod.rs":"2d0f7af28b47f7a2a6c210ebd1c1f33ed8eac62e56b5af2b856de2ad3fdc5187","src/unix/no_align.rs":"c06e95373b9088266e0b14bba0954eef95f93fb2b01d951855e382d22de78e53","src/unix/redox/mod.rs":"cc4794afa4fbed9d6612894ea476228f9d8533950162d6416fc4d16073e1dac4","src/unix/solarish/compat.rs":"b07a5bfac925eb012003a459ba6bddbd3bfa9c44b3394da2ac5a602e54beae9c","src/unix/solarish/illumos.rs":"7d8f47fd37880715b449723688aaee568785325a46f1c360a05bdca13252278e","src/unix/solarish/mod.rs":"bf2cb449b8a690fc1fa31c3b22c4db80075270a88d63123d18ca305317e53b2e","src/unix/solarish/solaris.rs":"65b005453aefa9b9d4fc860fe77cfec80d8c97a51342b15daf55fc3e808bb384","src/unix/solarish/x86_64.rs":"9d761573bdccbdd1ac61da571f7e96b5374df70241d9b72d45a069611f495085","src/vxworks/aarch64.rs":"98f0afdc511cd02557e506c21fed6737585490a1dce7a9d4941d08c437762b99","src/vxworks/arm.rs":"acb7968ce99fe3f4abdf39d98f8133d21a4fba435b8ef7084777cb181d788e88","src/vxworks/mod.rs":"aea3da66f2140f2a82dfc9c58f6e6531d2dd9c15ea696e0f95a0d4a2a187b5b6","src/vxworks/powerpc.rs":"acb7968ce99fe3f4abdf39d98f8133d21a4fba435b8ef7084777cb181d788e88","src/vxworks/powerpc64.rs":"98f0afdc511cd02557e506c21fed6737585490a1dce7a9d4941d08c437762b99","src/vxworks/x86.rs":"552f007f38317620b23889cb7c49d1d115841252439060122f52f434fbc6e5ba","src/vxworks/x86_64.rs":"018d92be3ad628a129eff9f2f5dfbc0883d8b8e5f2fa917b900a7f98ed6b514a","src/wasi.rs":"2c945bce3ddd26bf20ff03fb4192c9c3f625f1308a479c5cb4bd4510a892629a","src/windows/gnu/align.rs":"b2c13ec1b9f3b39a75c452c80c951dff9d0215e31d77e883b4502afb31794647","src/windows/gnu/mod.rs":"3c8c7edb7cdf5d0c44af936db2a94869585c69dfabeef30571b4f4e38375767a","src/windows/mod.rs":"1cd9223293255b994814487e28d9979fb8ebef4538a236c1aa47fdc166a149cc","src/windows/msvc/mod.rs":"860dc98245039bc3aa5782ef2b5798d009ea6655bd27a63f244be2206d2cb47f","src/windows/msvc/x86_64/align.rs":"648cf422b5a9c38eeb91754833780fd1f7aebca241c0391f1198ae2b286fde65","src/windows/msvc/x86_64/mod.rs":"a1f20fd9ed4eb6cddea3f0ebe70d791cdf00ed55ae10e23047e6b31c36c00c57","tests/const_fn.rs":"cb75a1f0864f926aebe79118fc34d51a0d1ade2c20a394e7774c7e545f21f1f4"},"package":"a60553f9a9e039a333b4e9b20573b9e9b9c0bb3a11e201ccc48ef4283456d673"} | ||
| 16 | \ No newline at end of file | ||
| 17 | +{"files":{"CONTRIBUTING.md":"752eea5a703d11b485c6b5f195f51bd2c79aa5159b619ce09555c779e1fb586b","Cargo.toml":"cef5103f1c20b2e9090a6bbc9b1d9d44746851f60a8ed69b94d52e64133eb98a","LICENSE-APACHE":"a60eea817514531668d7e00765731449fe14d059d3249e0bc93b36de45f759f2","LICENSE-MIT":"a8d47ff51ca256f56a8932dba07660672dbfe3004257ca8de708aac1415937a1","README.md":"8228847944f1332882fbb00275b6f30e4a8aad08a13569c25d52cac012cc2a47","build.rs":"8e0e8d33cc9e7c25cde75c2b502420f943266a681024169f94084774b422681d","rustfmt.toml":"eaa2ea84fc1ba0359b77680804903e07bb38d257ab11986b95b158e460f787b2","src/fixed_width_ints.rs":"34c60f12ec5eeb90f13ec3b954427532111c2446e69617616a97aefc1086a9f1","src/fuchsia/aarch64.rs":"378776a9e40766154a54c94c2a7b4675b5c302a38e6e42da99e67bfbaee60e56","src/fuchsia/align.rs":"ae1cf8f011a99737eabeb14ffff768e60f13b13363d7646744dbb0f443dab3d6","src/fuchsia/mod.rs":"520300ff260d377930f2f456135ec9a3ac7740a949ce7bf5269c0dc60d56c0df","src/fuchsia/no_align.rs":"303f3f1b255e0088b5715094353cf00476131d8e94e6aebb3f469557771c8b8a","src/fuchsia/x86_64.rs":"93a3632b5cf67d2a6bcb7dc0a558605252d5fe689e0f38d8aa2ec5852255ac87","src/hermit/aarch64.rs":"86048676e335944c37a63d0083d0f368ae10ceccefeed9debb3bbe08777fc682","src/hermit/mod.rs":"d3bfce41e4463d4be8020a2d063c9bfa8b665f45f1cc6cbf3163f5d01e7cb21f","src/hermit/x86_64.rs":"ab832b7524e5fb15c49ff7431165ab1a37dc4667ae0b58e8306f4c539bfa110c","src/lib.rs":"4cf1ca3940157caa735a5cdb478c450d1648669a87d7311cd7c4928c273bd273","src/macros.rs":"7844312c233a6889fa15395fe3106f6a8f6229211104a92f33ea3c9536eef763","src/psp.rs":"dd31aabd46171d474ec5828372e28588935120e7355c90c105360d8fa9264c1c","src/sgx.rs":"16a95cdefc81c5ee00d8353a60db363c4cc3e0f75abcd5d0144723f2a306ed1b","src/solid/aarch64.rs":"8cdae0cc37c43dabd4253a534e700bec6b6a57293c0c8e36c9ce16675d16799a","src/solid/arm.rs":"852b58a0837fde089cb9b5af131bf653daeb8c726f7540032756db8b7d4f8149","src/solid/mod.rs":"98dc29c3e5773318ba258a4a2b7407f25aa52d40885a0024fbe43676fe54d14b","src/switch.rs":"9da3dd39b3de45a7928789926e8572d00e1e11a39e6f7289a1349aadce90edba","src/unix/align.rs":"2cdc7c826ef7ae61f5171c5ae8c445a743d86f1a7f2d9d7e4ceeec56d6874f65","src/unix/bsd/apple/b32/align.rs":"ec833a747866fe19ca2d9b4d3c9ff0385faba5edf4bd0d15fa68884c40b0e26c","src/unix/bsd/apple/b32/mod.rs":"2546ad3eb6aecb95f916648bc63264117c92b4b4859532b34cb011e4c75a5a72","src/unix/bsd/apple/b64/aarch64/align.rs":"f0c321265dd7671f16106b84951ac7dd77ed2e65c6623cbf2d29e76531984770","src/unix/bsd/apple/b64/aarch64/mod.rs":"44c217a4f263afe7a97435de9323d20a96c37836f899ca0925306d4b7e073c27","src/unix/bsd/apple/b64/align.rs":"ec833a747866fe19ca2d9b4d3c9ff0385faba5edf4bd0d15fa68884c40b0e26c","src/unix/bsd/apple/b64/mod.rs":"f5e278a1af7fb358891d1c9be4eb7e815aaca0c5cb738d0c3604ba2208a856f7","src/unix/bsd/apple/b64/x86_64/align.rs":"ec833a747866fe19ca2d9b4d3c9ff0385faba5edf4bd0d15fa68884c40b0e26c","src/unix/bsd/apple/b64/x86_64/mod.rs":"8c87c5855038aae5d433c8f5eb3b29b0a175879a0245342b3bfd83bdf4cfd936","src/unix/bsd/apple/mod.rs":"15560099a9ee54cd97b3485c4e5a380af5352373b952a876aeb9476f2acdad04","src/unix/bsd/freebsdlike/dragonfly/errno.rs":"8295b8bb0dfd38d2cdb4d9192cdeeb534cc6c3b208170e64615fa3e0edb3e578","src/unix/bsd/freebsdlike/dragonfly/mod.rs":"d07c9769835178783820f48e00312f215ee9fa4c62c54000280c52c9906c63c2","src/unix/bsd/freebsdlike/freebsd/aarch64.rs":"2a215bd6136b8617aacedf9be738ccee94da9d29b418e9a78101d6291c182352","src/unix/bsd/freebsdlike/freebsd/arm.rs":"59d6a670eea562fb87686e243e0a84603d29a2028a3d4b3f99ccc01bd04d2f47","src/unix/bsd/freebsdlike/freebsd/freebsd11/b64.rs":"9808d152c1196aa647f1b0f0cf84dac8c930da7d7f897a44975545e3d9d17681","src/unix/bsd/freebsdlike/freebsd/freebsd11/mod.rs":"bf0a994e2079b8aad9da5efd3a3b9a7194a53ae60887a25c57964fb68499e847","src/unix/bsd/freebsdlike/freebsd/freebsd12/b64.rs":"61cbe45f8499bedb168106b686d4f8239472f25c7553b069eec2afe197ff2df6","src/unix/bsd/freebsdlike/freebsd/freebsd12/mod.rs":"295b3e3b67394f731d4e88d169e3d3d1d80026b99898745cd0d1d163f085ff61","src/unix/bsd/freebsdlike/freebsd/freebsd12/x86_64.rs":"2df36a7f122f6d6e5753cfb4d22e915cc80f6bc91c0161b3daae55a481bfd052","src/unix/bsd/freebsdlike/freebsd/freebsd13/b64.rs":"61cbe45f8499bedb168106b686d4f8239472f25c7553b069eec2afe197ff2df6","src/unix/bsd/freebsdlike/freebsd/freebsd13/mod.rs":"df003cfb7794fe4ee8df224fbc62e6427969ec369cd7cfda0b448d5bcbc1e228","src/unix/bsd/freebsdlike/freebsd/freebsd13/x86_64.rs":"2df36a7f122f6d6e5753cfb4d22e915cc80f6bc91c0161b3daae55a481bfd052","src/unix/bsd/freebsdlike/freebsd/mod.rs":"527fd23d6087af6131f2f4001b86f464b08b6255c5f9139f2c3a28de24301e72","src/unix/bsd/freebsdlike/freebsd/powerpc.rs":"9ca3f82f88974e6db5569f2d76a5a3749b248a31747a6c0da5820492bdfeca42","src/unix/bsd/freebsdlike/freebsd/powerpc64.rs":"2dae3ecc87eac3b11657aa98915def55fc4b5c0de11fe26aae23329a54628a9a","src/unix/bsd/freebsdlike/freebsd/x86.rs":"c5005e3249eb7c93cfbac72a9e9272320d80ce7983da990ceb05a447f59a02c5","src/unix/bsd/freebsdlike/freebsd/x86_64/align.rs":"0e1f69a88fca1c32874b1daf5db3d446fefbe518dca497f096cc9168c39dde70","src/unix/bsd/freebsdlike/freebsd/x86_64/mod.rs":"c3a0111252e201c172b99e7d9cbee4cf088d3dd47995110e819f04276bccd198","src/unix/bsd/freebsdlike/mod.rs":"cd435ad58e743a9e83c6c91f9ed3f4c4c31e587d39e0d8ee5cc905f513623835","src/unix/bsd/mod.rs":"2fed08973739d7f6a7412b204724af64b1a915c712689c250cf9a08263ba05ff","src/unix/bsd/netbsdlike/mod.rs":"4e9da54e541773c7ad4cca9dade1df00f28f2fdac3f8df5957f4c74b7e082344","src/unix/bsd/netbsdlike/netbsd/aarch64.rs":"65dcb58d11e8d8028401a9d07ca3eb4cb4f053e04249cc877353449d84ccc4cb","src/unix/bsd/netbsdlike/netbsd/arm.rs":"58cdbb70b0d6f536551f0f3bb3725d2d75c4690db12c26c034e7d6ec4a924452","src/unix/bsd/netbsdlike/netbsd/mod.rs":"e4b0dfd3004b3a5b4fc4def43a6a389bae11a3ac8a3c604c2fa09ee1c8ae7030","src/unix/bsd/netbsdlike/netbsd/powerpc.rs":"ee7ff5d89d0ed22f531237b5059aa669df93a3b5c489fa641465ace8d405bf41","src/unix/bsd/netbsdlike/netbsd/sparc64.rs":"9489f4b3e4566f43bb12dfb92238960613dac7f6a45cc13068a8d152b902d7d9","src/unix/bsd/netbsdlike/netbsd/x86.rs":"20692320e36bfe028d1a34d16fe12ca77aa909cb02bda167376f98f1a09aefe7","src/unix/bsd/netbsdlike/netbsd/x86_64.rs":"1afe5ef46b14397cdd68664b5b232e4f5b035b6db1d4cf411c899d51ebca9f30","src/unix/bsd/netbsdlike/openbsd/aarch64.rs":"dd91931d373b7ecaf6e2de25adadee10d16fa9b12c2cbacdff3eb291e1ba36af","src/unix/bsd/netbsdlike/openbsd/mod.rs":"ea4a056a0b78a4d73d359d44454ad96a4465872a916bd2a19b955fbc9070ca29","src/unix/bsd/netbsdlike/openbsd/sparc64.rs":"d04fd287afbaa2c5df9d48c94e8374a532a3ba491b424ddf018270c7312f4085","src/unix/bsd/netbsdlike/openbsd/x86.rs":"6f7f5c4fde2a2259eb547890cbd86570cea04ef85347d7569e94e679448bec87","src/unix/bsd/netbsdlike/openbsd/x86_64.rs":"d31db31630289c85af3339dbe357998a21ca584cbae31607448fe2cf7675a4e1","src/unix/haiku/b32.rs":"69ae47fc52c6880e85416b4744500d5655c9ec6131cb737f3b649fceaadce15a","src/unix/haiku/b64.rs":"73e64db09275a8da8d50a13cce2cfa2b136036ddf3a930d2939f337fc995900b","src/unix/haiku/mod.rs":"f0219c43860134e3134361477a202e6c561d6543899377fbdbc86f442bc2415f","src/unix/haiku/native.rs":"44855f52906f607de137fc4baa8c6b1b9a26baaa666f25d5f7a7ec5e017c8be6","src/unix/haiku/x86_64.rs":"3ec3aeeb7ed208b8916f3e32d42bfd085ff5e16936a1a35d9a52789f043b7237","src/unix/hermit/aarch64.rs":"86048676e335944c37a63d0083d0f368ae10ceccefeed9debb3bbe08777fc682","src/unix/hermit/mod.rs":"859814f5df89e28fd4b345db399d181e11e7ed413841b6ff703a1fcbdbf013ae","src/unix/hermit/x86_64.rs":"ab832b7524e5fb15c49ff7431165ab1a37dc4667ae0b58e8306f4c539bfa110c","src/unix/linux_like/android/b32/arm.rs":"433c1530f602cc5ed26610c58055dde0c4ceea5e00150063b24ddc60768332a4","src/unix/linux_like/android/b32/mod.rs":"d971b98530a96f5892f98e1edc3133cf278d1b3939d77ab0a27a6323e0961715","src/unix/linux_like/android/b32/x86/align.rs":"812914e4241df82e32b12375ca3374615dc3a4bdd4cf31f0423c5815320c0dab","src/unix/linux_like/android/b32/x86/mod.rs":"8388bd3a0fcb5636bf965eee6dc95ae6860b85a2b555b387c868aa4d4e01ec89","src/unix/linux_like/android/b64/aarch64/align.rs":"2179c3b1608fa4bf68840482bfc2b2fa3ee2faf6fcae3770f9e505cddca35c7b","src/unix/linux_like/android/b64/aarch64/mod.rs":"8fe667d2b14abc5ac8aad32e16c3da24350471d8156eaea9ab4989f73dd9f9fc","src/unix/linux_like/android/b64/mod.rs":"d7bbbadafdb2cb2ff8e9cde3d89a03b9facaabb6b2d45705225d3ece1c5cce37","src/unix/linux_like/android/b64/x86_64/align.rs":"7169d07a9fd4716f7512719aec9fda5d8bed306dc0720ffc1b21696c9951e3c6","src/unix/linux_like/android/b64/x86_64/mod.rs":"06b22dc184e85a988ab969c75cadc52b9878faeab0eb9d21215878c95fe07c19","src/unix/linux_like/android/mod.rs":"7066335e80984db42a80f56abdbda048f0773f0bdeb72f530e989d683d61ad8d","src/unix/linux_like/emscripten/align.rs":"86c95cbed7a7161b1f23ee06843e7b0e2340ad92b2cb86fe2a8ef3e0e8c36216","src/unix/linux_like/emscripten/mod.rs":"b71d37106750f57bc2dae4e9bcb473ff098ef48235827e41a1687a39825f0aa4","src/unix/linux_like/emscripten/no_align.rs":"0128e4aa721a9902754828b61b5ec7d8a86619983ed1e0544a85d35b1051fad6","src/unix/linux_like/linux/align.rs":"213e70ebed2703e14a9cf17666b21ecbf180b7bff7fa22fdbb36dbbd52df326d","src/unix/linux_like/linux/arch/generic/mod.rs":"ff1fe8fad4ea15d9bec3db25efcfcb4939190c5189f86cfa4d05825aa8c10956","src/unix/linux_like/linux/arch/mips/mod.rs":"e4a980b002105aaa057eb6568e1e2c6168ade5c00e13a31ef67e316ddffdb900","src/unix/linux_like/linux/arch/mod.rs":"466a29622e47c6c7f1500682b2eb17f5566dd81b322cd6348f0fdd355cec593a","src/unix/linux_like/linux/arch/powerpc/mod.rs":"1789eb5b41f75c29239795124a4a7cdcf7c8d213b88cf581b2f5bda08d7cf15b","src/unix/linux_like/linux/arch/sparc/mod.rs":"ded708124ee610267d011dee31fb02d1ec697c334aa822776ec95a7ddf6fc541","src/unix/linux_like/linux/gnu/align.rs":"e4a3c27fe20a57b8d612c34cb05bc70646edb5cec7251957315afa53a7b9f936","src/unix/linux_like/linux/gnu/b32/arm/align.rs":"3fed009dc9af3cc81be7087da9d2d7d1f39845e4497e290259c5cdbae25f039d","src/unix/linux_like/linux/gnu/b32/arm/mod.rs":"07adf9f4b96854062db518aaf08521fde0ad4a21a5c049efccba437bd97b2b5a","src/unix/linux_like/linux/gnu/b32/mips/align.rs":"429fb5e005cb7143602d430098b6ebfb7d360685b194f333dfd587472ae954ee","src/unix/linux_like/linux/gnu/b32/mips/mod.rs":"1cb5c0c9df3af2bbe131a91593583259fac9118931744c8435e197a394eb0462","src/unix/linux_like/linux/gnu/b32/mod.rs":"794dbcbae7dae8fd6b0b814573243197ceb532b56ef0772ad86b4b401478fcd9","src/unix/linux_like/linux/gnu/b32/powerpc.rs":"0cd7348badb9c4f8a0db31a2503b30c456a2bfcc7a0e5919762b1e12f912c5ad","src/unix/linux_like/linux/gnu/b32/riscv32/mod.rs":"ee5145a383386b716605a8d1ff3df212d418aae1aa1f37d2307d4f9cd1a08e99","src/unix/linux_like/linux/gnu/b32/sparc/align.rs":"21adbed27df73e2d1ed934aaf733a643003d7baf2bde9c48ea440895bcca6d41","src/unix/linux_like/linux/gnu/b32/sparc/mod.rs":"1bcec269a8416ccc48a384ca5765eaaa23f30f39f32311f50008ef4eeadafb2f","src/unix/linux_like/linux/gnu/b32/x86/align.rs":"e4bafdc4a519a7922a81b37a62bbfd1177a2f620890eef8f1fbc47162e9eb413","src/unix/linux_like/linux/gnu/b32/x86/mod.rs":"5317dbf2323577b89370bbee3894882b89d8333176db4f7b271ddc2f036ef43c","src/unix/linux_like/linux/gnu/b64/aarch64/align.rs":"2179c3b1608fa4bf68840482bfc2b2fa3ee2faf6fcae3770f9e505cddca35c7b","src/unix/linux_like/linux/gnu/b64/aarch64/ilp32.rs":"21a21503ef2e095f4371044915d4bfb07a8578011cb5c713cd9f45947b0b5730","src/unix/linux_like/linux/gnu/b64/aarch64/lp64.rs":"e78c3cd197f44832338b414d1a9bc0d194f44c74db77bd7bf830c1fff62b2690","src/unix/linux_like/linux/gnu/b64/aarch64/mod.rs":"c3730792dabcc166d8fd22929ef2633d49bc626875382dfcd401e8e125fb7a84","src/unix/linux_like/linux/gnu/b64/mips64/align.rs":"7169d07a9fd4716f7512719aec9fda5d8bed306dc0720ffc1b21696c9951e3c6","src/unix/linux_like/linux/gnu/b64/mips64/mod.rs":"68bcb71bbfccb4e8648948e494366d94767ce96f36daab9c1329375cdd32a459","src/unix/linux_like/linux/gnu/b64/mod.rs":"6336065423c26b59681fd2ce77f1117ea36af13e163fdadaefd108bd8191e8c8","src/unix/linux_like/linux/gnu/b64/powerpc64/align.rs":"e29c4868bbecfa4a6cd8a2ad06193f3bbc78a468cc1dc9df83f002f1268130d9","src/unix/linux_like/linux/gnu/b64/powerpc64/mod.rs":"dbb8905e363ed4a2dfb984554ad9b6389d27f6a2d599ec2d80e38a6c7551a019","src/unix/linux_like/linux/gnu/b64/riscv64/mod.rs":"5b982c41097f4f91adcb0968290afeccb27dce1695a261c964d34ef85df87cf4","src/unix/linux_like/linux/gnu/b64/s390x.rs":"a9484dfd3c7ca1174537957bef997c3ba7ea41989cdf61ede22b1bbc45a667bf","src/unix/linux_like/linux/gnu/b64/sparc64/align.rs":"e29c4868bbecfa4a6cd8a2ad06193f3bbc78a468cc1dc9df83f002f1268130d9","src/unix/linux_like/linux/gnu/b64/sparc64/mod.rs":"26fda11bdce99372c2c246e60866b56d98beb9fb49a2f6b69347ecfd03d18255","src/unix/linux_like/linux/gnu/b64/x86_64/align.rs":"7169d07a9fd4716f7512719aec9fda5d8bed306dc0720ffc1b21696c9951e3c6","src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs":"5a5ce7c5c92f60d8900dce63d363a38f3126aaf5be981710e172bec96ef95ac6","src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs":"f775ac2b754f90b63053fe22afe1d19d306b5404995568d6805baa9249fb617f","src/unix/linux_like/linux/gnu/b64/x86_64/x32.rs":"4ba1b58468f55254717366f50fdfd3e4114fde6dc442a56681926c4d7e5b6b0d","src/unix/linux_like/linux/gnu/mod.rs":"af3590c392bd06394cb307ccb993e66f53de7e2a0211c689dbb1845220475445","src/unix/linux_like/linux/gnu/no_align.rs":"9cd223135de75315840ff9c3fd5441ba1cb632b96b5c85a76f8316c86653db25","src/unix/linux_like/linux/mod.rs":"d4d754e571d864b356a9f7d04b378ba491ccc6281f01ae3da5a1c052dae67554","src/unix/linux_like/linux/musl/b32/arm/align.rs":"3e8ac052c1043764776b54c93ba4260e061df998631737a897d9d47d54f7b80c","src/unix/linux_like/linux/musl/b32/arm/mod.rs":"6255abe2ee04986832d12b7b2190589580f2a43e9bfb285b32b5747227f62727","src/unix/linux_like/linux/musl/b32/hexagon.rs":"a8811791809672be8338e6e27d1c4fcf383c2f26585be8bf9ab2923b219de032","src/unix/linux_like/linux/musl/b32/mips/align.rs":"429fb5e005cb7143602d430098b6ebfb7d360685b194f333dfd587472ae954ee","src/unix/linux_like/linux/musl/b32/mips/mod.rs":"b9e9ff42363ebbb884ddf6445129ec4164471df45846874fc08f5f458e659254","src/unix/linux_like/linux/musl/b32/mod.rs":"8ede3985e6243882814ce91e8ce543e7edbafc0cee5932816072b6f14207a671","src/unix/linux_like/linux/musl/b32/powerpc.rs":"4592dc5f1f2fe888dfef85fa862d42d168e73a2c6f4fc052b58287d0f4d4ffcd","src/unix/linux_like/linux/musl/b32/x86/align.rs":"08e77fbd7435d7dec2ff56932433bece3f02e47ce810f89004a275a86d39cbe1","src/unix/linux_like/linux/musl/b32/x86/mod.rs":"a19a8decfab185af3cebd34aae4b15082e7552be573904b8c1a3f0c0e493ef34","src/unix/linux_like/linux/musl/b64/aarch64/align.rs":"798a9229d70ce235394f2dd625f6c4c1e10519a94382dc5b091952b638ae2928","src/unix/linux_like/linux/musl/b64/aarch64/mod.rs":"a73035c6d9b776f13b839008e15c04c2c53455571efd06664affcb047e457112","src/unix/linux_like/linux/musl/b64/mips64.rs":"2744895451f3a777fbe54f7f2695be53310b965fd62084c9b7e9121c7fe28346","src/unix/linux_like/linux/musl/b64/mod.rs":"d847206d9f2d594c8febe780a938cdccf40d985dafc11e90f235947735a09bac","src/unix/linux_like/linux/musl/b64/powerpc64.rs":"e5a55525b42493923956d668f978fb45e22d51deea00ce5edbfddf76ff19c741","src/unix/linux_like/linux/musl/b64/s390x.rs":"03dfec6794d93cb31a7c52b2d53a0973755168f91f8fa437cc5dbd54882c8ee7","src/unix/linux_like/linux/musl/b64/x86_64/align.rs":"7169d07a9fd4716f7512719aec9fda5d8bed306dc0720ffc1b21696c9951e3c6","src/unix/linux_like/linux/musl/b64/x86_64/mod.rs":"0dd168f5a6881f32e5239fb312b23cf137b800d0ff323286a92c8a2c382b5456","src/unix/linux_like/linux/musl/mod.rs":"ac08dd0891304a0e6f478a38bffa4fe8e6b27ad79094b2f7139c7a95082c3a18","src/unix/linux_like/linux/no_align.rs":"5ed04c53bf9d27da9b4d65ba7625c6ac53330162683d1b3df98950caafa3507b","src/unix/linux_like/linux/uclibc/align.rs":"9ed16138d8e439bd90930845a65eafa7ebd67366e6bf633936d44014f6e4c959","src/unix/linux_like/linux/uclibc/arm/align.rs":"e4a3c27fe20a57b8d612c34cb05bc70646edb5cec7251957315afa53a7b9f936","src/unix/linux_like/linux/uclibc/arm/mod.rs":"1e3bf809508b5872949136859bf48ddf58b7d24ae9f0b663e79f0efd1aaeb6a6","src/unix/linux_like/linux/uclibc/arm/no_align.rs":"9cd223135de75315840ff9c3fd5441ba1cb632b96b5c85a76f8316c86653db25","src/unix/linux_like/linux/uclibc/mips/mips32/align.rs":"e4a3c27fe20a57b8d612c34cb05bc70646edb5cec7251957315afa53a7b9f936","src/unix/linux_like/linux/uclibc/mips/mips32/mod.rs":"fa4102d9a596d90de604ce2962b0e64f184dfbf10552a4c3ecf28f12d4704379","src/unix/linux_like/linux/uclibc/mips/mips32/no_align.rs":"9cd223135de75315840ff9c3fd5441ba1cb632b96b5c85a76f8316c86653db25","src/unix/linux_like/linux/uclibc/mips/mips64/align.rs":"a7bdcb18a37a2d91e64d5fad83ea3edc78f5412adb28f77ab077dbb26dd08b2d","src/unix/linux_like/linux/uclibc/mips/mips64/mod.rs":"e3085ba56cfbc528d7c3c55065880603238c333b6047ef51c58177508a487fcd","src/unix/linux_like/linux/uclibc/mips/mips64/no_align.rs":"4a18e3875698c85229599225ac3401a2a40da87e77b2ad4ef47c6fcd5a24ed30","src/unix/linux_like/linux/uclibc/mips/mod.rs":"a2877679fef0f14f54a89ccbc41fb02f0c25bf6e536f9eb2cb2fa437e1d3f739","src/unix/linux_like/linux/uclibc/mod.rs":"82d504d3aa12cb0f7933980f81c4708fa6e070d4c57efdf407f2de05b71bc06d","src/unix/linux_like/linux/uclibc/no_align.rs":"3f28637046524618adaa1012e26cb7ffe94b9396e6b518cccdc69d59f274d709","src/unix/linux_like/linux/uclibc/x86_64/l4re.rs":"024eba5753e852dbdd212427351affe7e83f9916c1864bce414d7aa2618f192e","src/unix/linux_like/linux/uclibc/x86_64/mod.rs":"66e8f5b7509a6e638b8b904906f89badbab0da8fb5b602d07ebd88649c4b961a","src/unix/linux_like/linux/uclibc/x86_64/other.rs":"42c3f71e58cabba373f6a55a623f3c31b85049eb64824c09c2b082b3b2d6a0a8","src/unix/linux_like/mod.rs":"ffce98bdd208fd9d335c65feafbf0d9742bea67c7eec1ee48657f292132ec3f0","src/unix/mod.rs":"6b2b57833e37cd3231944696c8216eb587a2a68069346150cf321153eaf04d03","src/unix/newlib/aarch64/mod.rs":"bb269c1468a9676442554600e87417079a787fe6220dfc23b3109639259e8710","src/unix/newlib/align.rs":"28aaf87fafbc6b312622719d472d8cf65f9e5467d15339df5f73e66d8502b28a","src/unix/newlib/arm/mod.rs":"c71be856bfd7f576b2db28af9f680211cbe6c1cac7d537bbc8020b39591af07c","src/unix/newlib/espidf/mod.rs":"c198cb4beccdab483be61c102da74dc51ac80f766797e33021f3110394ed5a3d","src/unix/newlib/mod.rs":"d7271c13748be08305d36f9af6f41f6950a7a1d6d4382149194a35d5fe2090de","src/unix/newlib/no_align.rs":"e0743b2179495a9514bc3a4d1781e492878c4ec834ee0085d0891dd1712e82fb","src/unix/newlib/powerpc/mod.rs":"2d0f7af28b47f7a2a6c210ebd1c1f33ed8eac62e56b5af2b856de2ad3fdc5187","src/unix/no_align.rs":"c06e95373b9088266e0b14bba0954eef95f93fb2b01d951855e382d22de78e53","src/unix/redox/mod.rs":"cc4794afa4fbed9d6612894ea476228f9d8533950162d6416fc4d16073e1dac4","src/unix/solarish/compat.rs":"b07a5bfac925eb012003a459ba6bddbd3bfa9c44b3394da2ac5a602e54beae9c","src/unix/solarish/illumos.rs":"7d8f47fd37880715b449723688aaee568785325a46f1c360a05bdca13252278e","src/unix/solarish/mod.rs":"bf2cb449b8a690fc1fa31c3b22c4db80075270a88d63123d18ca305317e53b2e","src/unix/solarish/solaris.rs":"65b005453aefa9b9d4fc860fe77cfec80d8c97a51342b15daf55fc3e808bb384","src/unix/solarish/x86_64.rs":"9d761573bdccbdd1ac61da571f7e96b5374df70241d9b72d45a069611f495085","src/vxworks/aarch64.rs":"98f0afdc511cd02557e506c21fed6737585490a1dce7a9d4941d08c437762b99","src/vxworks/arm.rs":"acb7968ce99fe3f4abdf39d98f8133d21a4fba435b8ef7084777cb181d788e88","src/vxworks/mod.rs":"aea3da66f2140f2a82dfc9c58f6e6531d2dd9c15ea696e0f95a0d4a2a187b5b6","src/vxworks/powerpc.rs":"acb7968ce99fe3f4abdf39d98f8133d21a4fba435b8ef7084777cb181d788e88","src/vxworks/powerpc64.rs":"98f0afdc511cd02557e506c21fed6737585490a1dce7a9d4941d08c437762b99","src/vxworks/x86.rs":"552f007f38317620b23889cb7c49d1d115841252439060122f52f434fbc6e5ba","src/vxworks/x86_64.rs":"018d92be3ad628a129eff9f2f5dfbc0883d8b8e5f2fa917b900a7f98ed6b514a","src/wasi.rs":"2c945bce3ddd26bf20ff03fb4192c9c3f625f1308a479c5cb4bd4510a892629a","src/windows/gnu/align.rs":"b2c13ec1b9f3b39a75c452c80c951dff9d0215e31d77e883b4502afb31794647","src/windows/gnu/mod.rs":"3c8c7edb7cdf5d0c44af936db2a94869585c69dfabeef30571b4f4e38375767a","src/windows/mod.rs":"1cd9223293255b994814487e28d9979fb8ebef4538a236c1aa47fdc166a149cc","src/windows/msvc/mod.rs":"860dc98245039bc3aa5782ef2b5798d009ea6655bd27a63f244be2206d2cb47f","src/windows/msvc/x86_64/align.rs":"648cf422b5a9c38eeb91754833780fd1f7aebca241c0391f1198ae2b286fde65","src/windows/msvc/x86_64/mod.rs":"a1f20fd9ed4eb6cddea3f0ebe70d791cdf00ed55ae10e23047e6b31c36c00c57","tests/const_fn.rs":"cb75a1f0864f926aebe79118fc34d51a0d1ade2c20a394e7774c7e545f21f1f4"},"package":"a60553f9a9e039a333b4e9b20573b9e9b9c0bb3a11e201ccc48ef4283456d673"} | ||
diff --git a/meta/recipes-devtools/rust/libstd-rs_1.58.1.bb b/meta/recipes-devtools/rust/libstd-rs_1.58.1.bb deleted file mode 100644 index 141fea1454..0000000000 --- a/meta/recipes-devtools/rust/libstd-rs_1.58.1.bb +++ /dev/null | |||
| @@ -1,12 +0,0 @@ | |||
| 1 | require rust-source.inc | ||
| 2 | require libstd-rs.inc | ||
| 3 | |||
| 4 | SRC_URI += " \ | ||
| 5 | file://0001-Add-base-definitions-for-riscv64-musl.patch;patchdir=../../ \ | ||
| 6 | file://0002-FIXUP-linux-musl-mod.rs-add-riscv64-to-b64-set.patch;patchdir=../../ \ | ||
| 7 | file://0003-FIXUP-Correct-definitions-to-match-musl.patch;patchdir=../../ \ | ||
| 8 | file://0004-Update-checksums-for-modified-files-for-rust.patch;patchdir=../../ \ | ||
| 9 | " | ||
| 10 | |||
| 11 | # libstd moved from src/libstd to library/std in 1.47+ | ||
| 12 | S = "${RUSTSRC}/library/std" | ||
diff --git a/meta/recipes-devtools/rust/libstd-rs_1.59.0.bb b/meta/recipes-devtools/rust/libstd-rs_1.59.0.bb new file mode 100644 index 0000000000..d4721029e8 --- /dev/null +++ b/meta/recipes-devtools/rust/libstd-rs_1.59.0.bb | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | require rust-source.inc | ||
| 2 | require libstd-rs.inc | ||
| 3 | |||
| 4 | # libstd moved from src/libstd to library/std in 1.47+ | ||
| 5 | S = "${RUSTSRC}/library/std" | ||
diff --git a/meta/recipes-devtools/rust/rust-cross-canadian_1.58.1.bb b/meta/recipes-devtools/rust/rust-cross-canadian_1.59.0.bb index 766912c019..766912c019 100644 --- a/meta/recipes-devtools/rust/rust-cross-canadian_1.58.1.bb +++ b/meta/recipes-devtools/rust/rust-cross-canadian_1.59.0.bb | |||
diff --git a/meta/recipes-devtools/rust/rust-cross_1.58.1.bb b/meta/recipes-devtools/rust/rust-cross_1.59.0.bb index 3179d395d2..3179d395d2 100644 --- a/meta/recipes-devtools/rust/rust-cross_1.58.1.bb +++ b/meta/recipes-devtools/rust/rust-cross_1.59.0.bb | |||
diff --git a/meta/recipes-devtools/rust/rust-llvm_1.58.1.bb b/meta/recipes-devtools/rust/rust-llvm_1.59.0.bb index 5b94e22f7b..5b94e22f7b 100644 --- a/meta/recipes-devtools/rust/rust-llvm_1.58.1.bb +++ b/meta/recipes-devtools/rust/rust-llvm_1.59.0.bb | |||
diff --git a/meta/recipes-devtools/rust/rust-snapshot.inc b/meta/recipes-devtools/rust/rust-snapshot.inc index d0c05aec78..b2f68766cf 100644 --- a/meta/recipes-devtools/rust/rust-snapshot.inc +++ b/meta/recipes-devtools/rust/rust-snapshot.inc | |||
| @@ -2,21 +2,21 @@ | |||
| 2 | ## snapshot info is taken from rust/src/stage0.txt | 2 | ## snapshot info is taken from rust/src/stage0.txt |
| 3 | ## TODO: find a way to add additional SRC_URIs based on the contents of an | 3 | ## TODO: find a way to add additional SRC_URIs based on the contents of an |
| 4 | ## earlier SRC_URI. | 4 | ## earlier SRC_URI. |
| 5 | RS_VERSION = "1.57.0" | 5 | RS_VERSION = "1.58.0" |
| 6 | CARGO_VERSION = "1.57.0" | 6 | CARGO_VERSION = "1.58.0" |
| 7 | 7 | ||
| 8 | # TODO: Add hashes for other architecture toolchains as well. Make a script? | 8 | # TODO: Add hashes for other architecture toolchains as well. Make a script? |
| 9 | SRC_URI[rust-std-snapshot-x86_64.sha256sum] = "ccdc72d06c90841b7227ec3630337881eeda3da5fbe87328d2e9d705f6f8016c" | 9 | SRC_URI[rust-std-snapshot-x86_64.sha256sum] = "319e2dc5f50cbdfb7091f56643c637465d6bc34291ccdaf1a06a2023a37f50c7" |
| 10 | SRC_URI[rustc-snapshot-x86_64.sha256sum] = "c42f40c5279a3a9d539cae93dbcab9d333777ad9a60a5b9f1086b874ef63db86" | 10 | SRC_URI[rustc-snapshot-x86_64.sha256sum] = "47e586451ac25027eb6c0d23c881a917d21d074d2fe9e5a3f41b4b6de1622be0" |
| 11 | SRC_URI[cargo-snapshot-x86_64.sha256sum] = "ed2013713ae742895af5df8d91c5430ba9ba3c781e3bc7f3471b220cc06d565d" | 11 | SRC_URI[cargo-snapshot-x86_64.sha256sum] = "3d44be4cf353f4172b79485121286be667b76246d9998e7c48a3c2907f5e9552" |
| 12 | 12 | ||
| 13 | SRC_URI[rust-std-snapshot-aarch64.sha256sum] = "3618da916a0f92f241cf1d67d04bb57835b303cf2047b57dc2f2487b89a4fc1f" | 13 | SRC_URI[rust-std-snapshot-aarch64.sha256sum] = "b562646864cea55079e4b9d35dc2e9b6abc8efa224e2e49779ba2cbf8ff83b3d" |
| 14 | SRC_URI[rustc-snapshot-aarch64.sha256sum] = "f26811e48d03c56c125de03d389e1ae7c6df36990953c1670c6a5676bc12d4cb" | 14 | SRC_URI[rustc-snapshot-aarch64.sha256sum] = "8d7c8a64118ee523ad3ffc84baf91cf02ff4415390dc835f3925f8697170ec65" |
| 15 | SRC_URI[cargo-snapshot-aarch64.sha256sum] = "6d11cd94618d80cda273eeeae7285980445f61a49ebacc616777b482a41cbf3f" | 15 | SRC_URI[cargo-snapshot-aarch64.sha256sum] = "0dd38e1c0217fec9a4075c74e3faa4ab5aeffe966f93e6ec56462b4df192c8b0" |
| 16 | 16 | ||
| 17 | SRC_URI[rust-std-snapshot-powerpc64le.sha256sum] = "fc07eb3e9f3d227428cc5b53ca868e3de375bc198ce4dce7b87a9246e6fec81a" | 17 | SRC_URI[rust-std-snapshot-powerpc64le.sha256sum] = "aebb2dcd1ec692997ac0f7f7420b7516fd914ec992449e6c53c22b45cd456f08" |
| 18 | SRC_URI[rustc-snapshot-powerpc64le.sha256sum] = "f43cb99109c3438c77c7079cdce4673df3320e310158e0b4d949c1babc4300fc" | 18 | SRC_URI[rustc-snapshot-powerpc64le.sha256sum] = "611a70f459936cda2b4d13046a34f7badc9628901b90752be392723c25a1f7ef" |
| 19 | SRC_URI[cargo-snapshot-powerpc64le.sha256sum] = "599cf1b5a8cdbf76d591621bc9222aefa60e2f5fd378ae71c4dcf4514c47122e" | 19 | SRC_URI[cargo-snapshot-powerpc64le.sha256sum] = "176b8899b031b9c96bef290933683a2dab365c623537984954e0a63a1a388cd7" |
| 20 | 20 | ||
| 21 | SRC_URI += " \ | 21 | SRC_URI += " \ |
| 22 | https://static.rust-lang.org/dist/${RUST_STD_SNAPSHOT}.tar.xz;name=rust-std-snapshot-${RUST_BUILD_ARCH};subdir=rust-snapshot-components \ | 22 | https://static.rust-lang.org/dist/${RUST_STD_SNAPSHOT}.tar.xz;name=rust-std-snapshot-${RUST_BUILD_ARCH};subdir=rust-snapshot-components \ |
diff --git a/meta/recipes-devtools/rust/rust-source.inc b/meta/recipes-devtools/rust/rust-source.inc index 92b1535130..ea70ad786f 100644 --- a/meta/recipes-devtools/rust/rust-source.inc +++ b/meta/recipes-devtools/rust/rust-source.inc | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | SRC_URI += "https://static.rust-lang.org/dist/rustc-${PV}-src.tar.xz;name=rust" | 1 | SRC_URI += "https://static.rust-lang.org/dist/rustc-${PV}-src.tar.xz;name=rust" |
| 2 | SRC_URI[rust.sha256sum] = "2b3643a48e7087053b0268971ec4154350342508922a8acb0707aaf94deb4469" | 2 | SRC_URI[rust.sha256sum] = "375996ead731cab2203ec10a66a3c4568ab6997d7e5d3ae597658164fe27be3d" |
| 3 | 3 | ||
| 4 | RUSTSRC = "${WORKDIR}/rustc-${PV}-src" | 4 | RUSTSRC = "${WORKDIR}/rustc-${PV}-src" |
| 5 | 5 | ||
diff --git a/meta/recipes-devtools/rust/rust-tools-cross-canadian_1.58.1.bb b/meta/recipes-devtools/rust/rust-tools-cross-canadian_1.59.0.bb index 2d809d68f5..2d809d68f5 100644 --- a/meta/recipes-devtools/rust/rust-tools-cross-canadian_1.58.1.bb +++ b/meta/recipes-devtools/rust/rust-tools-cross-canadian_1.59.0.bb | |||
diff --git a/meta/recipes-devtools/rust/rust_1.58.1.bb b/meta/recipes-devtools/rust/rust_1.59.0.bb index b505ad46ca..b505ad46ca 100644 --- a/meta/recipes-devtools/rust/rust_1.58.1.bb +++ b/meta/recipes-devtools/rust/rust_1.59.0.bb | |||
