Skip to content

Commit 577138b

Browse files
Mitchell KemberCQ Bot
Mitchell Kember
authored and
CQ Bot
committed
[starnix] Increase recursion limit more
This is a follow-up to I4e1c0b2ba35da81c9e2c6e3ae3e07fa8db1a48a1 to increase the recursion limit in more places to unblock the upstream change rust-lang/rust#126024. Test: full build with custom Rust toolchain including the PR Change-Id: Ia0b9ee4d53c00a94864a50190973f48515d2f76d Reviewed-on: https://fuchsia-review.googlesource.com/c/fuchsia/+/1087892 Commit-Queue: Mitchell Kember <mkember@google.com> Reviewed-by: James Robinson <jamesr@google.com> Reviewed-by: Tyler Mandry <tmandry@google.com>
1 parent c0ea53d commit 577138b

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

src/starnix/kernel/device/input/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5+
#![recursion_limit = "512"]
6+
57
mod input_device;
68
mod input_event_conversion;
79
mod input_file;

src/starnix/kernel/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// found in the LICENSE file.
44

55
#![recursion_limit = "512"]
6+
67
use tracing_mutex as _;
78

89
pub mod arch;

src/starnix/kernel/runner/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5-
#![recursion_limit = "256"]
5+
#![recursion_limit = "512"]
66

77
mod component_runner;
88
mod container;

0 commit comments

Comments
 (0)