1
0
mirror of synced 2026-04-19 06:48:39 +08:00

获取下个时间戳前暂停1ms

This commit is contained in:
yitter
2022-07-14 16:22:04 +08:00
parent 7d832e2acd
commit ff5719de7e
2 changed files with 4 additions and 1 deletions

View File

@@ -27,6 +27,7 @@ bld/
**/.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/
.vscode
# MSTest test Results
[Tt]est[Rr]esult*/
@@ -254,4 +255,4 @@ paket-files/
target/
# macOS
.DS_Store
.DS_Store,

View File

@@ -270,6 +270,8 @@ impl SnowWorkerM1 {
let mut tempTimeTicker = self.GetCurrentTimeTick();
while tempTimeTicker <= self._LastTimeTick {
// 暂停1ms
sleep(std::time::Duration::from_millis(1));
tempTimeTicker = self.GetCurrentTimeTick();
}