-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: luofucong <[email protected]>
- Loading branch information
1 parent
58041ad
commit 2dcaf5b
Showing
14 changed files
with
353 additions
and
224 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Copyright (c) 2017-present, PingCAP, Inc. Licensed under Apache-2.0. | ||
|
||
#[cfg(not(any(windows, feature = "std_fs")))] | ||
mod unix; | ||
#[cfg(not(any(windows, feature = "std_fs")))] | ||
pub use unix::LogFd; | ||
|
||
#[cfg(any(windows, feature = "std_fs"))] | ||
mod plain; | ||
#[cfg(any(windows, feature = "std_fs"))] | ||
pub use plain::LogFd; |
Oops, something went wrong.