mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-11 04:26:38 +00:00
base: move timerfd to timer
A series of patches move unix specific code into src/sys/unix/timer.rs, retain platform independent code in src/timer.rs and then introduces windows timer.rs. BUG=b:213153157 TEST=presubmit Change-Id: I1dad42b112305e70582f0ec8a0e38b7e305783fe Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3600758 Reviewed-by: Dennis Kempin <denniskempin@google.com> Auto-Submit: Vikram Auradkar <auradkar@google.com> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Vikram Auradkar <auradkar@google.com>
This commit is contained in:
parent
5bafb3a3c7
commit
273a9b16b3
2 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@ pub mod signal;
|
||||||
mod signalfd;
|
mod signalfd;
|
||||||
mod sock_ctrl_msg;
|
mod sock_ctrl_msg;
|
||||||
mod terminal;
|
mod terminal;
|
||||||
mod timerfd;
|
mod timer;
|
||||||
pub mod vsock;
|
pub mod vsock;
|
||||||
mod write_zeroes;
|
mod write_zeroes;
|
||||||
|
|
||||||
|
@ -79,7 +79,7 @@ pub use signal::*;
|
||||||
pub use signalfd::*;
|
pub use signalfd::*;
|
||||||
pub use sock_ctrl_msg::*;
|
pub use sock_ctrl_msg::*;
|
||||||
pub use terminal::*;
|
pub use terminal::*;
|
||||||
pub use timerfd::*;
|
pub use timer::*;
|
||||||
|
|
||||||
use crate::descriptor::{FromRawDescriptor, SafeDescriptor};
|
use crate::descriptor::{FromRawDescriptor, SafeDescriptor};
|
||||||
pub use file_traits::{
|
pub use file_traits::{
|
||||||
|
|
Loading…
Reference in a new issue