mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-12-28 22:42:34 +00:00
f651357433
The `clone_process` function was created to safely encapsulate fork/clone usage for the proxy device. This patch changes proxy device to do utilize that. TEST=cargo run -- -u <other crosvm args>... BUG=None Change-Id: I2d9f1794be61be31f3aae21037c7df14b7691172 Reviewed-on: https://chromium-review.googlesource.com/518935 Commit-Ready: Stephen Barber <smbarber@chromium.org> Tested-by: Zach Reizner <zachr@chromium.org> Reviewed-by: Dylan Reid <dgreid@chromium.org>
21 lines
395 B
TOML
21 lines
395 B
TOML
[package]
|
|
name = "crosvm"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
panic = 'abort'
|
|
|
|
[dependencies]
|
|
io_jail = { path = "io_jail" }
|
|
kvm = { path = "kvm" }
|
|
sys_util = { path = "sys_util" }
|
|
x86_64 = { path = "x86_64" }
|
|
kernel_loader = { path = "kernel_loader" }
|
|
libc = "0.2.21"
|
|
byteorder = "1"
|
|
|
|
[dependencies.clap]
|
|
version = "*"
|
|
default-features = false
|