From 8cd7aaa105e06f99cbad3e9db677eedec1f2c4b4 Mon Sep 17 00:00:00 2001 From: Chris Denton Date: Wed, 6 Mar 2024 15:34:33 +0000 Subject: [PATCH] Remove unnecessary fixme As the FIXME itself notes, there's nothing to fix here. --- library/std/src/sys/pal/windows/thread.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/library/std/src/sys/pal/windows/thread.rs b/library/std/src/sys/pal/windows/thread.rs index a8f1e9b726b1..601ba095aa49 100644 --- a/library/std/src/sys/pal/windows/thread.rs +++ b/library/std/src/sys/pal/windows/thread.rs @@ -26,11 +26,6 @@ impl Thread { pub unsafe fn new(stack: usize, p: Box) -> io::Result { let p = Box::into_raw(Box::new(p)); - // FIXME On UNIX, we guard against stack sizes that are too small but - // that's because pthreads enforces that stacks are at least - // PTHREAD_STACK_MIN bytes big. Windows has no such lower limit, it's - // just that below a certain threshold you can't do anything useful. - // That threshold is application and architecture-specific, however. let ret = c::CreateThread( ptr::null_mut(), stack,