Skip to content

Commit

Permalink
fix windows miri
Browse files Browse the repository at this point in the history
  • Loading branch information
estebank committed Dec 13, 2024
1 parent 143bf31 commit 0e9a88c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ note: inside `main`
LL | / thread::spawn(|| {
LL | | unsafe {
LL | | assert_eq!(WaitForSingleObject(MAIN_THREAD, INFINITE), WAIT_OBJECT_0);
LL | | }
LL | | })
... |
LL | | .join()
| |___________^

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ LL | / thread::spawn(|| {
LL | | unsafe {
LL | | let native = GetCurrentThread();
LL | | assert_eq!(WaitForSingleObject(native, INFINITE), WAIT_OBJECT_0);
... |
LL | | }
LL | | })
LL | | .join()
| |___________^

Expand Down

0 comments on commit 0e9a88c

Please sign in to comment.