mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 00:23:10 +00:00
[RDBSS][RXCE] Implement IRP cancellation
CORE-15441
This commit is contained in:
parent
1e141573e4
commit
a9124b412d
3 changed files with 252 additions and 2 deletions
|
@ -517,6 +517,8 @@ RxReinitializeContext(
|
|||
}
|
||||
#endif
|
||||
|
||||
extern FAST_MUTEX RxContextPerFileSerializationMutex;
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
RxResumeBlockedOperations_Serially(
|
||||
|
@ -527,4 +529,19 @@ VOID
|
|||
RxResumeBlockedOperations_ALL(
|
||||
_Inout_ PRX_CONTEXT RxContext);
|
||||
|
||||
#if (_WIN32_WINNT >= 0x0600)
|
||||
VOID
|
||||
RxCancelBlockingOperation(
|
||||
_Inout_ PRX_CONTEXT RxContext,
|
||||
_In_ PIRP Irp);
|
||||
#else
|
||||
VOID
|
||||
RxCancelBlockingOperation(
|
||||
_Inout_ PRX_CONTEXT RxContext);
|
||||
#endif
|
||||
|
||||
VOID
|
||||
RxRemoveOperationFromBlockingQueue(
|
||||
_Inout_ PRX_CONTEXT RxContext);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue