소스 검색

aya: add TODO to remove once_cell

Tamir Duberstein 1 개월 전
부모
커밋
89aa638e05
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      aya/src/util.rs

+ 2 - 0
aya/src/util.rs

@@ -201,6 +201,8 @@ pub fn nr_cpus() -> Result<usize, (&'static str, io::Error)> {
         static CACHE: once_cell::unsync::OnceCell<usize> = const { once_cell::unsync::OnceCell::new() };
     }
     CACHE.with(|cell| {
+        // TODO(https://github.com/rust-lang/rust/issues/109737): Replace `once_cell` with
+        // `std::cell::OnceCell`.
         cell.get_or_try_init(|| {
             // error: unsupported operation: `open` not available when isolation is enabled
             if cfg!(miri) {