mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 20:36:35 +00:00
[RTL]
- Limit unimplemented warnings about RtlActivateActivationContextUnsafeFast calls for now so that they don't flood the log too much. svn path=/trunk/; revision=51083
This commit is contained in:
parent
71201dea2c
commit
6fc1e4e122
1 changed files with 12 additions and 2 deletions
|
@ -2735,7 +2735,12 @@ NTAPI
|
|||
RtlActivateActivationContextUnsafeFast(IN PRTL_CALLER_ALLOCATED_ACTIVATION_CONTEXT_STACK_FRAME_EXTENDED Frame,
|
||||
IN PVOID Context)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
static int i;
|
||||
|
||||
if (i == 0)
|
||||
UNIMPLEMENTED;
|
||||
i++;
|
||||
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
@ -2743,7 +2748,12 @@ NTSTATUS
|
|||
NTAPI
|
||||
RtlDeactivateActivationContextUnsafeFast(IN PRTL_CALLER_ALLOCATED_ACTIVATION_CONTEXT_STACK_FRAME_EXTENDED Frame)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
static int i;
|
||||
|
||||
if (i == 0)
|
||||
UNIMPLEMENTED;
|
||||
i++;
|
||||
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue