diff options
author | Tamar Christina <tamar@zhox.com> | 2020-10-29 20:27:20 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-10-31 09:26:56 -0400 |
commit | cb1f755c6fb77f140aee11fdc7b4da04dd5dcd02 (patch) | |
tree | cc2956cfe5573e0f867769ae53f13e6077c2d919 /rts/win32 | |
parent | 08e6993a1b956e6edccdc1cecc7250b724bf79a0 (diff) | |
download | haskell-cb1f755c6fb77f140aee11fdc7b4da04dd5dcd02.tar.gz |
winio: Fix unused variables warnings
Diffstat (limited to 'rts/win32')
-rw-r--r-- | rts/win32/AsyncWinIO.c | 9 | ||||
-rw-r--r-- | rts/win32/AsyncWinIO.h | 2 |
2 files changed, 2 insertions, 9 deletions
diff --git a/rts/win32/AsyncWinIO.c b/rts/win32/AsyncWinIO.c index eebb0c77fb..660a687f99 100644 --- a/rts/win32/AsyncWinIO.c +++ b/rts/win32/AsyncWinIO.c @@ -322,17 +322,10 @@ void completeSynchronousRequest (void) * MSSEC is the maximum amount of time in milliseconds that an alertable wait should be done for before the haskell side requested to be notified of progress. * NUM_REQ is the total overall number of outstanding I/O requests. - * pending_service indicates that there might be still a outstanding service - request queued and therefore we shouldn't unblock the runner quite yet. - - `pending_service` is needed in case we cancel an IO operation. We don't want this - to result in two processRemoteCompletion threads being queued. As this is both harder - to reason about and bad for performance. So we only reset outstanding_service_requests - if no service is pending. */ -void registerAlertableWait (bool has_timeout, DWORD mssec, uint64_t num_req, bool pending_service) +void registerAlertableWait (bool has_timeout, DWORD mssec) { ASSERT(completionPortHandle != INVALID_HANDLE_VALUE); AcquireSRWLockExclusive (&wio_runner_lock); diff --git a/rts/win32/AsyncWinIO.h b/rts/win32/AsyncWinIO.h index 3ddf5de77a..145fc86257 100644 --- a/rts/win32/AsyncWinIO.h +++ b/rts/win32/AsyncWinIO.h @@ -18,7 +18,7 @@ extern bool startupAsyncWinIO(void); extern void shutdownAsyncWinIO(bool wait_threads); extern void awaitAsyncRequests(bool wait); extern void registerIOCPHandle (HANDLE port); -extern void registerAlertableWait (bool has_timeout, DWORD mssec, uint64_t num_req, bool service_pending); +extern void registerAlertableWait (bool has_timeout, DWORD mssec); extern OVERLAPPED_ENTRY* getOverlappedEntries (uint32_t *num); extern void completeSynchronousRequest (void); |