diff options
author | Brian Wignall <brianwignall@gmail.com> | 2021-02-05 09:03:21 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-02-06 09:30:34 -0500 |
commit | 3da472f0e78fe5f1068be0cc2b1c0762532da9f9 (patch) | |
tree | d88a147c49aa25fff13866de9b87c712213fbd3f /rts/win32 | |
parent | 9b7dcd80f16efda57e4e51e39d61b55a11c72014 (diff) | |
download | haskell-3da472f0e78fe5f1068be0cc2b1c0762532da9f9.tar.gz |
Fix typos
Diffstat (limited to 'rts/win32')
-rw-r--r-- | rts/win32/AsyncWinIO.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rts/win32/AsyncWinIO.c b/rts/win32/AsyncWinIO.c index 0c0b45e60f..7fb71e92e7 100644 --- a/rts/win32/AsyncWinIO.c +++ b/rts/win32/AsyncWinIO.c @@ -149,7 +149,7 @@ * call ioManagerStart() * Creat a thread to execute "runner" - We never truely shut down the IO Manager. While this means we + We never truly shut down the IO Manager. While this means we might block forever on the IOPort if the IO Manager is no longer needed we consider this cheap compared to the complexity of properly handling pausing and resuming of the manager. @@ -284,7 +284,7 @@ void shutdownAsyncWinIO(bool wait_threads) ioManagerDie (); } -/* Register the I/O completetion port handle PORT that the I/O manager will be +/* Register the I/O completion port handle PORT that the I/O manager will be monitoring. All handles are expected to be associated with this handle. */ void registerIOCPHandle (HANDLE port) { @@ -365,7 +365,7 @@ void registerAlertableWait (bool has_timeout, DWORD mssec) ReleaseSRWLockExclusive (&wio_runner_lock); /* Since we call registerAlertableWait only after - processing I/O requests it's always desireable to wake + processing I/O requests it's always desirable to wake up the runner here. */ WakeConditionVariable (&wakeEvent); |