mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-12-22 05:35:20 +00:00
vmm: fix two typos
Change "thead" to "thread". Also make sure the two messages are distinguishable by adding "vmm" and "vm" prefix. Signed-off-by: Wei Liu <liuwe@microsoft.com>
This commit is contained in:
parent
427a2bacf5
commit
34b3170680
@ -468,7 +468,7 @@ impl Vmm {
|
||||
Vmm::signal_handler(signals, on_tty, &exit_evt);
|
||||
}))
|
||||
.map_err(|_| {
|
||||
error!("signal_handler thead panicked");
|
||||
error!("vmm signal_handler thread panicked");
|
||||
exit_evt.write(1).ok()
|
||||
})
|
||||
.ok();
|
||||
|
@ -1970,7 +1970,7 @@ impl Vm {
|
||||
Vm::signal_handler(signals, console);
|
||||
}))
|
||||
.map_err(|_| {
|
||||
error!("signal_handler thead panicked");
|
||||
error!("vm signal_handler thread panicked");
|
||||
exit_evt.write(1).ok()
|
||||
})
|
||||
.ok();
|
||||
|
Loading…
Reference in New Issue
Block a user