From: short <> Date: Fri, 31 Jan 2003 19:31:51 +0000 (+0000) Subject: IoIsOperationSynchronous(): for async IRPs: KeBugCheck(0) -> lie it is sync X-Git-Tag: captive-0_2~81 X-Git-Url: http://git.jankratochvil.net/?a=commitdiff_plain;h=34ada38f914939404ecdd26d8fee34e61bd586e4;hp=22d54e8d45ea0ada4089688d17524dbced124ddb;p=reactos.git IoIsOperationSynchronous(): for async IRPs: KeBugCheck(0) -> lie it is sync --- diff --git a/ntoskrnl/io/irp.c b/ntoskrnl/io/irp.c index 96c0399..0b681f9 100644 --- a/ntoskrnl/io/irp.c +++ b/ntoskrnl/io/irp.c @@ -328,7 +328,7 @@ IoIsOperationSynchronous(IN PIRP Irp) { #ifdef LIBCAPTIVE /* libcaptive is fully single-thread/single-process synchronous model. */ - KeBugCheck(0); + return TRUE; #endif /* LIBCAPTIVE */ return(FALSE); } @@ -345,7 +345,7 @@ IoIsOperationSynchronous(IN PIRP Irp) /* Otherwise, it is an asynchronous operation. */ #ifdef LIBCAPTIVE /* libcaptive is fully single-thread/single-process synchronous model. */ - KeBugCheck(0); + return TRUE; #endif /* LIBCAPTIVE */ return(FALSE); }