[INFO] crate forkjoin 2.3.0 is already in cache
[INFO] checking forkjoin-2.3.0 against master#209b2be09fcaff937480d1fbbe8b31646e361c7a for pr-70917
[INFO] extracting crate forkjoin 2.3.0 into /workspace/builds/worker-4/source
[INFO] validating manifest of crates.io crate forkjoin 2.3.0 on toolchain 209b2be09fcaff937480d1fbbe8b31646e361c7a
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking crates.io crate forkjoin 2.3.0
[INFO] finished tweaking crates.io crate forkjoin 2.3.0
[INFO] tweaked toml for crates.io crate forkjoin 2.3.0 written to /workspace/builds/worker-4/source/Cargo.toml
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"`
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "check" "--frozen" "--all" "--all-targets"`
[INFO] [stdout] cfd9339545604343d5a94fda2376f5c41b633c860fbe05ccf8497c4451d9a7f2
[INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] running `"docker" "start" "-a" "cfd9339545604343d5a94fda2376f5c41b633c860fbe05ccf8497c4451d9a7f2"`
[INFO] [stderr]     Checking deque v0.2.3
[INFO] [stderr]     Checking forkjoin v2.3.0 (/opt/rustwide/workdir)
[INFO] [stderr] error[E0433]: failed to resolve: could not find `funcs` in `libc`
[INFO] [stderr]   --> src/workerthread.rs:21:11
[INFO] [stderr]    |
[INFO] [stderr] 21 | use libc::funcs::posix88::unistd::usleep;
[INFO] [stderr]    |           ^^^^^ could not find `funcs` in `libc`
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `JoinGuard` in module `thread`
[INFO] [stderr]   --> src/workerthread.rs:81:39
[INFO] [stderr]    |
[INFO] [stderr] 81 |     pub fn spawn(mut self) -> thread::JoinGuard<'a, ()> {
[INFO] [stderr]    |                                       ^^^^^^^^^ not found in `thread`
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `usleep` in this scope
[INFO] [stderr]    --> src/workerthread.rs:147:34
[INFO] [stderr]     |
[INFO] [stderr] 147 |                         unsafe { usleep(backoff_sleep); }
[INFO] [stderr]     |                                  ^^^^^^ not found in this scope
[INFO] [stderr]     |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]     |
[INFO] [stderr] 16  | use libc::usleep;
[INFO] [stderr]     |
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `JoinGuard` in module `thread`
[INFO] [stderr]   --> src/poolsupervisor.rs:42:24
[INFO] [stderr]    |
[INFO] [stderr] 42 |     joinguard: thread::JoinGuard<'thread, ()>,
[INFO] [stderr]    |                        ^^^^^^^^^ not found in `thread`
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `JoinGuard` in module `thread`
[INFO] [stderr]   --> src/poolsupervisor.rs:54:79
[INFO] [stderr]    |
[INFO] [stderr] 54 |     pub fn spawn(nthreads: usize) -> (Sender<SupervisorMsg<Arg,Ret>>, thread::JoinGuard<'t, ()>) {
[INFO] [stderr]    |                                                                               ^^^^^^^^^ not found in `thread`
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `JoinGuard` in module `thread`
[INFO] [stderr]    --> src/poolsupervisor.rs:122:38
[INFO] [stderr]     |
[INFO] [stderr] 122 |     fn start_thread(self) -> thread::JoinGuard<'t, ()> {
[INFO] [stderr]     |                                      ^^^^^^^^^ not found in `thread`
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `JoinGuard` in module `thread`
[INFO] [stderr]    --> src/lib.rs:449:24
[INFO] [stderr]     |
[INFO] [stderr] 449 |     joinguard: thread::JoinGuard<'a, ()>,
[INFO] [stderr]     |                        ^^^^^^^^^ not found in `thread`
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead?
[INFO] [stderr]    --> src/lib.rs:229:1
[INFO] [stderr]     |
[INFO] [stderr] 229 | extern crate libc;
[INFO] [stderr]     | ^^^^^^^^^^^^^^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = note: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
[INFO] [stderr]     = help: add `#![feature(rustc_private)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: use of unstable library feature 'ptr_internals': use `NonNull` instead and consider `PhantomData<T>` (if you also use `#[may_dangle]`), `Send`, and/or `Sync`
[INFO] [stderr]    --> src/lib.rs:231:5
[INFO] [stderr]     |
[INFO] [stderr] 231 | use std::ptr::Unique;
[INFO] [stderr]     |     ^^^^^^^^^^^^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = help: add `#![feature(ptr_internals)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: use of unstable library feature 'ptr_internals': use `NonNull` instead and consider `PhantomData<T>` (if you also use `#[may_dangle]`), `Send`, and/or `Sync`
[INFO] [stderr]    --> src/lib.rs:348:10
[INFO] [stderr]     |
[INFO] [stderr] 348 |     Join(Unique<Ret>, Arc<JoinBarrier<Ret>>),
[INFO] [stderr]     |          ^^^^^^^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = help: add `#![feature(ptr_internals)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: use of unstable library feature 'ptr_internals': use `NonNull` instead and consider `PhantomData<T>` (if you also use `#[may_dangle]`), `Send`, and/or `Sync`
[INFO] [stderr]   --> src/workerthread.rs:18:16
[INFO] [stderr]    |
[INFO] [stderr] 18 | use std::ptr::{Unique,write};
[INFO] [stderr]    |                ^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = help: add `#![feature(ptr_internals)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: use of unstable library feature 'ptr_internals': use `NonNull` instead and consider `PhantomData<T>` (if you also use `#[may_dangle]`), `Send`, and/or `Sync`
[INFO] [stderr]    --> src/workerthread.rs:290:55
[INFO] [stderr]     |
[INFO] [stderr] 290 | fn create_result_vec<Ret>(n: usize) -> (Vec<Ret>, Vec<Unique<Ret>>) {
[INFO] [stderr]     |                                                       ^^^^^^^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = help: add `#![feature(ptr_internals)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: use of unstable library feature 'ptr_internals': use `NonNull` instead and consider `PhantomData<T>` (if you also use `#[may_dangle]`), `Send`, and/or `Sync`
[INFO] [stderr]    --> src/workerthread.rs:292:27
[INFO] [stderr]     |
[INFO] [stderr] 292 |     let mut rets_ptr: Vec<Unique<Ret>> = Vec::with_capacity(n);
[INFO] [stderr]     |                           ^^^^^^^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = help: add `#![feature(ptr_internals)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: use of unstable library feature 'ptr_internals': use `NonNull` instead and consider `PhantomData<T>` (if you also use `#[may_dangle]`), `Send`, and/or `Sync`
[INFO] [stderr]    --> src/workerthread.rs:297:27
[INFO] [stderr]     |
[INFO] [stderr] 297 |             rets_ptr.push(Unique::new(ptr_0.offset(i)));
[INFO] [stderr]     |                           ^^^^^^^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = help: add `#![feature(ptr_internals)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: could not find `funcs` in `libc`
[INFO] [stderr]   --> src/workerthread.rs:21:11
[INFO] [stderr]    |
[INFO] [stderr] 21 | use libc::funcs::posix88::unistd::usleep;
[INFO] [stderr]    |           ^^^^^ could not find `funcs` in `libc`
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `JoinGuard` in module `thread`
[INFO] [stderr]   --> src/workerthread.rs:81:39
[INFO] [stderr]    |
[INFO] [stderr] 81 |     pub fn spawn(mut self) -> thread::JoinGuard<'a, ()> {
[INFO] [stderr]    |                                       ^^^^^^^^^ not found in `thread`
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `usleep` in this scope
[INFO] [stderr]    --> src/workerthread.rs:147:34
[INFO] [stderr]     |
[INFO] [stderr] 147 |                         unsafe { usleep(backoff_sleep); }
[INFO] [stderr]     |                                  ^^^^^^ not found in this scope
[INFO] [stderr]     |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]     |
[INFO] [stderr] 16  | use libc::usleep;
[INFO] [stderr]     |
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `JoinGuard` in module `thread`
[INFO] [stderr]   --> src/poolsupervisor.rs:42:24
[INFO] [stderr]    |
[INFO] [stderr] 42 |     joinguard: thread::JoinGuard<'thread, ()>,
[INFO] [stderr]    |                        ^^^^^^^^^ not found in `thread`
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `JoinGuard` in module `thread`
[INFO] [stderr]   --> src/poolsupervisor.rs:54:79
[INFO] [stderr]    |
[INFO] [stderr] 54 |     pub fn spawn(nthreads: usize) -> (Sender<SupervisorMsg<Arg,Ret>>, thread::JoinGuard<'t, ()>) {
[INFO] [stderr]    |                                                                               ^^^^^^^^^ not found in `thread`
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `JoinGuard` in module `thread`
[INFO] [stderr]    --> src/poolsupervisor.rs:122:38
[INFO] [stderr]     |
[INFO] [stderr] 122 |     fn start_thread(self) -> thread::JoinGuard<'t, ()> {
[INFO] [stderr]     |                                      ^^^^^^^^^ not found in `thread`
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `JoinGuard` in module `thread`
[INFO] [stderr]    --> src/lib.rs:449:24
[INFO] [stderr]     |
[INFO] [stderr] 449 |     joinguard: thread::JoinGuard<'a, ()>,
[INFO] [stderr]     |                        ^^^^^^^^^ not found in `thread`
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead?
[INFO] [stderr]    --> src/lib.rs:229:1
[INFO] [stderr]     |
[INFO] [stderr] 229 | extern crate libc;
[INFO] [stderr]     | ^^^^^^^^^^^^^^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = note: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
[INFO] [stderr]     = help: add `#![feature(rustc_private)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: use of unstable library feature 'ptr_internals': use `NonNull` instead and consider `PhantomData<T>` (if you also use `#[may_dangle]`), `Send`, and/or `Sync`
[INFO] [stderr]    --> src/lib.rs:231:5
[INFO] [stderr]     |
[INFO] [stderr] 231 | use std::ptr::Unique;
[INFO] [stderr]     |     ^^^^^^^^^^^^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = help: add `#![feature(ptr_internals)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: use of unstable library feature 'ptr_internals': use `NonNull` instead and consider `PhantomData<T>` (if you also use `#[may_dangle]`), `Send`, and/or `Sync`
[INFO] [stderr]    --> src/lib.rs:348:10
[INFO] [stderr]     |
[INFO] [stderr] 348 |     Join(Unique<Ret>, Arc<JoinBarrier<Ret>>),
[INFO] [stderr]     |          ^^^^^^^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = help: add `#![feature(ptr_internals)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: use of unstable library feature 'ptr_internals': use `NonNull` instead and consider `PhantomData<T>` (if you also use `#[may_dangle]`), `Send`, and/or `Sync`
[INFO] [stderr]   --> src/workerthread.rs:18:16
[INFO] [stderr]    |
[INFO] [stderr] 18 | use std::ptr::{Unique,write};
[INFO] [stderr]    |                ^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = help: add `#![feature(ptr_internals)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: use of unstable library feature 'ptr_internals': use `NonNull` instead and consider `PhantomData<T>` (if you also use `#[may_dangle]`), `Send`, and/or `Sync`
[INFO] [stderr]    --> src/workerthread.rs:290:55
[INFO] [stderr]     |
[INFO] [stderr] 290 | fn create_result_vec<Ret>(n: usize) -> (Vec<Ret>, Vec<Unique<Ret>>) {
[INFO] [stderr]     |                                                       ^^^^^^^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = help: add `#![feature(ptr_internals)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: use of unstable library feature 'ptr_internals': use `NonNull` instead and consider `PhantomData<T>` (if you also use `#[may_dangle]`), `Send`, and/or `Sync`
[INFO] [stderr]    --> src/workerthread.rs:292:27
[INFO] [stderr]     |
[INFO] [stderr] 292 |     let mut rets_ptr: Vec<Unique<Ret>> = Vec::with_capacity(n);
[INFO] [stderr]     |                           ^^^^^^^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = help: add `#![feature(ptr_internals)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: use of unstable library feature 'ptr_internals': use `NonNull` instead and consider `PhantomData<T>` (if you also use `#[may_dangle]`), `Send`, and/or `Sync`
[INFO] [stderr]    --> src/workerthread.rs:297:27
[INFO] [stderr]     |
[INFO] [stderr] 297 |             rets_ptr.push(Unique::new(ptr_0.offset(i)));
[INFO] [stderr]     |                           ^^^^^^^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = help: add `#![feature(ptr_internals)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0392]: parameter `'thread` is never used
[INFO] [stderr]   --> src/poolsupervisor.rs:45:33
[INFO] [stderr]    |
[INFO] [stderr] 45 | pub struct PoolSupervisorThread<'thread, Arg: Send, Ret: Send + Sync> {
[INFO] [stderr]    |                                 ^^^^^^^ unused parameter
[INFO] [stderr]    |
[INFO] [stderr]    = help: consider removing `'thread`, referring to it in a field, or using a marker such as `std::marker::PhantomData`
[INFO] [stderr] 
[INFO] [stderr] error[E0392]: parameter `'thread` is never used
[INFO] [stderr]   --> src/poolsupervisor.rs:45:33
[INFO] [stderr]    |
[INFO] [stderr] 45 | pub struct PoolSupervisorThread<'thread, Arg: Send, Ret: Send + Sync> {
[INFO] [stderr]    |                                 ^^^^^^^ unused parameter
[INFO] [stderr]    |
[INFO] [stderr]    = help: consider removing `'thread`, referring to it in a field, or using a marker such as `std::marker::PhantomData`
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 15 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0392, E0412, E0425, E0433, E0658.
[INFO] [stderr] For more information about an error, try `rustc --explain E0392`.
[INFO] [stderr] error: aborting due to 15 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0392, E0412, E0425, E0433, E0658.
[INFO] [stderr] For more information about an error, try `rustc --explain E0392`.
[INFO] [stderr] error: could not compile `forkjoin`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] [stderr] error: could not compile `forkjoin`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "cfd9339545604343d5a94fda2376f5c41b633c860fbe05ccf8497c4451d9a7f2"`
[INFO] running `"docker" "rm" "-f" "cfd9339545604343d5a94fda2376f5c41b633c860fbe05ccf8497c4451d9a7f2"`
[INFO] [stdout] cfd9339545604343d5a94fda2376f5c41b633c860fbe05ccf8497c4451d9a7f2
