2005-01-17 07:10:34 +00:00
|
|
|
NtAcceptConnectPort 6
|
|
|
|
NtAccessCheck 8
|
|
|
|
NtAccessCheckAndAuditAlarm 11
|
2006-10-23 21:28:17 +00:00
|
|
|
NtAccessCheckByType 11
|
|
|
|
NtAccessCheckByTypeAndAuditAlarm 16
|
|
|
|
NtAccessCheckByTypeResultList 11
|
|
|
|
NtAccessCheckByTypeResultListAndAuditAlarm 16
|
|
|
|
NtAccessCheckByTypeResultListAndAuditAlarmByHandle 17
|
2005-01-17 07:10:34 +00:00
|
|
|
NtAddAtom 3
|
|
|
|
NtAddBootEntry 2
|
2006-10-23 21:28:17 +00:00
|
|
|
NtAddDriverEntry 2
|
2005-01-17 07:10:34 +00:00
|
|
|
NtAdjustGroupsToken 6
|
|
|
|
NtAdjustPrivilegesToken 6
|
|
|
|
NtAlertResumeThread 2
|
|
|
|
NtAlertThread 1
|
|
|
|
NtAllocateLocallyUniqueId 1
|
2006-10-23 21:28:17 +00:00
|
|
|
NtAllocateUserPhysicalPages 3
|
2005-01-17 07:10:34 +00:00
|
|
|
NtAllocateUuids 4
|
|
|
|
NtAllocateVirtualMemory 6
|
2006-10-23 21:28:17 +00:00
|
|
|
NtApphelpCacheControl 2
|
|
|
|
NtAreMappedFilesTheSame 2
|
2005-01-17 07:10:34 +00:00
|
|
|
NtAssignProcessToJobObject 2
|
|
|
|
NtCallbackReturn 3
|
2008-01-05 17:29:44 +00:00
|
|
|
NtCancelDeviceWakeupRequest 1
|
2005-01-17 07:10:34 +00:00
|
|
|
NtCancelIoFile 2
|
|
|
|
NtCancelTimer 2
|
|
|
|
NtClearEvent 1
|
|
|
|
NtClose 1
|
|
|
|
NtCloseObjectAuditAlarm 3
|
2006-10-23 21:28:17 +00:00
|
|
|
NtCompactKeys 2
|
2006-10-15 19:12:41 +00:00
|
|
|
NtCompareTokens 3
|
2005-01-17 07:10:34 +00:00
|
|
|
NtCompleteConnectPort 1
|
2006-10-23 21:28:17 +00:00
|
|
|
NtCompressKey 1
|
2005-01-17 07:10:34 +00:00
|
|
|
NtConnectPort 8
|
|
|
|
NtContinue 2
|
- More sharing between ntdll/ntoskrnl: shared Dbg code.
- Added NtCreateDebugObject, NtDebugContinue, NtQueryDebugFilterState, NtSetDebugFilterState, NtWaitForDebugEvent to system call list.
- Added some debug constants to headers
- Updated RtlpCheckForActiveDebugger in ntoskrnl to return whatever we're expecting as the "normal" case.
- Added RtlpSetInDbgPrint to rtl support library for special DbgPrint implementation difference in user-mode
- Removed all the deprecated debug APIs in ntdll.
- Implemented NtQueryDebugFilterState and NtSetDebugFilterState based on royce's implementation.
- Started modifications on KeDebugService, and implemented DebugService in rtl
- Implemented all the Dbg* APIs in RTL.
- Implemented DbgUiConnectToDbg, DbgUiContinue, DbgUiWaitStateChange, DbgUiRemoteBreakin, DbgUiIssueRemoteBreakin
- Changed KD Print callbacks to also receive the length of the string.
Right now, one call that should be shared still isn't (the final DebugPrint call) because calling KeDebugService from kernel-mode seems to cause a hang. Also, DebugService does not currently cause an exception like it should (instead it still calls the Kdp handler), because those changes would've made the patch even bigger and are still untested.
svn path=/trunk/; revision=18078
2005-09-26 04:59:48 +00:00
|
|
|
NtCreateDebugObject 4
|
2005-01-17 07:10:34 +00:00
|
|
|
NtCreateDirectoryObject 3
|
|
|
|
NtCreateEvent 5
|
|
|
|
NtCreateEventPair 3
|
|
|
|
NtCreateFile 11
|
|
|
|
NtCreateIoCompletion 4
|
|
|
|
NtCreateJobObject 3
|
2006-10-23 21:28:17 +00:00
|
|
|
NtCreateJobSet 3
|
2005-01-17 07:10:34 +00:00
|
|
|
NtCreateKey 7
|
|
|
|
NtCreateMailslotFile 8
|
|
|
|
NtCreateMutant 4
|
|
|
|
NtCreateNamedPipeFile 14
|
|
|
|
NtCreatePagingFile 4
|
|
|
|
NtCreatePort 5
|
|
|
|
NtCreateProcess 8
|
2006-10-23 21:28:17 +00:00
|
|
|
NtCreateProcessEx 9
|
2005-01-17 07:10:34 +00:00
|
|
|
NtCreateProfile 9
|
|
|
|
NtCreateSection 7
|
|
|
|
NtCreateSemaphore 5
|
|
|
|
NtCreateSymbolicLinkObject 4
|
|
|
|
NtCreateThread 8
|
|
|
|
NtCreateTimer 4
|
|
|
|
NtCreateToken 13
|
|
|
|
NtCreateWaitablePort 5
|
2006-06-28 17:02:37 +00:00
|
|
|
NtDebugActiveProcess 2
|
- More sharing between ntdll/ntoskrnl: shared Dbg code.
- Added NtCreateDebugObject, NtDebugContinue, NtQueryDebugFilterState, NtSetDebugFilterState, NtWaitForDebugEvent to system call list.
- Added some debug constants to headers
- Updated RtlpCheckForActiveDebugger in ntoskrnl to return whatever we're expecting as the "normal" case.
- Added RtlpSetInDbgPrint to rtl support library for special DbgPrint implementation difference in user-mode
- Removed all the deprecated debug APIs in ntdll.
- Implemented NtQueryDebugFilterState and NtSetDebugFilterState based on royce's implementation.
- Started modifications on KeDebugService, and implemented DebugService in rtl
- Implemented all the Dbg* APIs in RTL.
- Implemented DbgUiConnectToDbg, DbgUiContinue, DbgUiWaitStateChange, DbgUiRemoteBreakin, DbgUiIssueRemoteBreakin
- Changed KD Print callbacks to also receive the length of the string.
Right now, one call that should be shared still isn't (the final DebugPrint call) because calling KeDebugService from kernel-mode seems to cause a hang. Also, DebugService does not currently cause an exception like it should (instead it still calls the Kdp handler), because those changes would've made the patch even bigger and are still untested.
svn path=/trunk/; revision=18078
2005-09-26 04:59:48 +00:00
|
|
|
NtDebugContinue 3
|
2005-01-17 07:10:34 +00:00
|
|
|
NtDelayExecution 2
|
|
|
|
NtDeleteAtom 1
|
2006-10-23 21:28:17 +00:00
|
|
|
NtDeleteBootEntry 1
|
|
|
|
NtDeleteDriverEntry 1
|
2005-01-17 07:10:34 +00:00
|
|
|
NtDeleteFile 1
|
|
|
|
NtDeleteKey 1
|
|
|
|
NtDeleteObjectAuditAlarm 3
|
|
|
|
NtDeleteValueKey 2
|
|
|
|
NtDeviceIoControlFile 10
|
|
|
|
NtDisplayString 1
|
|
|
|
NtDuplicateObject 7
|
|
|
|
NtDuplicateToken 6
|
|
|
|
NtEnumerateBootEntries 2
|
2006-10-23 21:28:17 +00:00
|
|
|
NtEnumerateDriverEntries 2
|
2005-01-17 07:10:34 +00:00
|
|
|
NtEnumerateKey 6
|
2006-10-23 21:28:17 +00:00
|
|
|
NtEnumerateSystemEnvironmentValuesEx 3
|
2005-01-17 07:10:34 +00:00
|
|
|
NtEnumerateValueKey 6
|
|
|
|
NtExtendSection 2
|
2006-10-23 21:28:17 +00:00
|
|
|
NtFilterToken 6
|
2005-01-17 07:10:34 +00:00
|
|
|
NtFindAtom 3
|
|
|
|
NtFlushBuffersFile 2
|
|
|
|
NtFlushInstructionCache 3
|
|
|
|
NtFlushKey 1
|
|
|
|
NtFlushVirtualMemory 4
|
|
|
|
NtFlushWriteBuffer 0
|
2006-10-23 21:28:17 +00:00
|
|
|
NtFreeUserPhysicalPages 3
|
2005-01-17 07:10:34 +00:00
|
|
|
NtFreeVirtualMemory 4
|
|
|
|
NtFsControlFile 10
|
|
|
|
NtGetContextThread 2
|
2006-10-23 21:28:17 +00:00
|
|
|
NtGetDevicePowerState 2
|
2005-01-17 07:10:34 +00:00
|
|
|
NtGetPlugPlayEvent 4
|
2006-10-23 21:28:17 +00:00
|
|
|
NtGetWriteWatch 7
|
2006-01-05 13:40:05 +00:00
|
|
|
NtImpersonateAnonymousToken 1
|
2005-01-17 07:10:34 +00:00
|
|
|
NtImpersonateClientOfPort 2
|
|
|
|
NtImpersonateThread 3
|
|
|
|
NtInitializeRegistry 1
|
|
|
|
NtInitiatePowerAction 4
|
|
|
|
NtIsProcessInJob 2
|
2006-10-23 21:28:17 +00:00
|
|
|
NtIsSystemResumeAutomatic 0
|
2005-01-17 07:10:34 +00:00
|
|
|
NtListenPort 2
|
|
|
|
NtLoadDriver 1
|
|
|
|
NtLoadKey 2
|
|
|
|
NtLoadKey2 3
|
2007-11-22 18:38:32 +00:00
|
|
|
NtLoadKeyEx 4
|
2005-01-17 07:10:34 +00:00
|
|
|
NtLockFile 10
|
2006-10-23 21:28:17 +00:00
|
|
|
NtLockProductActivationKeys 2
|
|
|
|
NtLockRegistryKey 1
|
2005-01-17 07:10:34 +00:00
|
|
|
NtLockVirtualMemory 4
|
|
|
|
NtMakePermanentObject 1
|
|
|
|
NtMakeTemporaryObject 1
|
2006-10-23 21:28:17 +00:00
|
|
|
NtMapUserPhysicalPages 3
|
|
|
|
NtMapUserPhysicalPagesScatter 3
|
2005-01-17 07:10:34 +00:00
|
|
|
NtMapViewOfSection 10
|
2006-10-23 21:28:17 +00:00
|
|
|
NtModifyBootEntry 1
|
|
|
|
NtModifyDriverEntry 1
|
2005-01-17 07:10:34 +00:00
|
|
|
NtNotifyChangeDirectoryFile 9
|
|
|
|
NtNotifyChangeKey 10
|
2006-10-23 21:28:17 +00:00
|
|
|
NtNotifyChangeMultipleKeys 12
|
2005-01-17 07:10:34 +00:00
|
|
|
NtOpenDirectoryObject 3
|
|
|
|
NtOpenEvent 3
|
|
|
|
NtOpenEventPair 3
|
|
|
|
NtOpenFile 6
|
|
|
|
NtOpenIoCompletion 3
|
|
|
|
NtOpenJobObject 3
|
|
|
|
NtOpenKey 3
|
|
|
|
NtOpenMutant 3
|
|
|
|
NtOpenObjectAuditAlarm 12
|
|
|
|
NtOpenProcess 4
|
|
|
|
NtOpenProcessToken 3
|
|
|
|
NtOpenProcessTokenEx 4
|
|
|
|
NtOpenSection 3
|
|
|
|
NtOpenSemaphore 3
|
|
|
|
NtOpenSymbolicLinkObject 3
|
|
|
|
NtOpenThread 4
|
|
|
|
NtOpenThreadToken 4
|
|
|
|
NtOpenThreadTokenEx 5
|
|
|
|
NtOpenTimer 3
|
2005-01-18 13:59:14 +00:00
|
|
|
NtPlugPlayControl 3
|
2005-01-17 07:10:34 +00:00
|
|
|
NtPowerInformation 5
|
|
|
|
NtPrivilegeCheck 3
|
|
|
|
NtPrivilegeObjectAuditAlarm 6
|
2008-01-05 17:29:44 +00:00
|
|
|
NtPrivilegedServiceAuditAlarm 5
|
2005-01-17 07:10:34 +00:00
|
|
|
NtProtectVirtualMemory 5
|
|
|
|
NtPulseEvent 2
|
|
|
|
NtQueryAttributesFile 2
|
|
|
|
NtQueryBootEntryOrder 2
|
|
|
|
NtQueryBootOptions 2
|
- More sharing between ntdll/ntoskrnl: shared Dbg code.
- Added NtCreateDebugObject, NtDebugContinue, NtQueryDebugFilterState, NtSetDebugFilterState, NtWaitForDebugEvent to system call list.
- Added some debug constants to headers
- Updated RtlpCheckForActiveDebugger in ntoskrnl to return whatever we're expecting as the "normal" case.
- Added RtlpSetInDbgPrint to rtl support library for special DbgPrint implementation difference in user-mode
- Removed all the deprecated debug APIs in ntdll.
- Implemented NtQueryDebugFilterState and NtSetDebugFilterState based on royce's implementation.
- Started modifications on KeDebugService, and implemented DebugService in rtl
- Implemented all the Dbg* APIs in RTL.
- Implemented DbgUiConnectToDbg, DbgUiContinue, DbgUiWaitStateChange, DbgUiRemoteBreakin, DbgUiIssueRemoteBreakin
- Changed KD Print callbacks to also receive the length of the string.
Right now, one call that should be shared still isn't (the final DebugPrint call) because calling KeDebugService from kernel-mode seems to cause a hang. Also, DebugService does not currently cause an exception like it should (instead it still calls the Kdp handler), because those changes would've made the patch even bigger and are still untested.
svn path=/trunk/; revision=18078
2005-09-26 04:59:48 +00:00
|
|
|
NtQueryDebugFilterState 2
|
2005-01-17 07:10:34 +00:00
|
|
|
NtQueryDefaultLocale 2
|
|
|
|
NtQueryDefaultUILanguage 1
|
|
|
|
NtQueryDirectoryFile 11
|
|
|
|
NtQueryDirectoryObject 7
|
2006-10-23 21:28:17 +00:00
|
|
|
NtQueryDriverEntryOrder 2
|
2005-01-17 07:10:34 +00:00
|
|
|
NtQueryEaFile 9
|
|
|
|
NtQueryEvent 5
|
|
|
|
NtQueryFullAttributesFile 2
|
2006-10-23 21:28:17 +00:00
|
|
|
NtQueryInformationAtom 5
|
2005-01-17 07:10:34 +00:00
|
|
|
NtQueryInformationFile 5
|
|
|
|
NtQueryInformationJobObject 5
|
|
|
|
NtQueryInformationPort 5
|
|
|
|
NtQueryInformationProcess 5
|
|
|
|
NtQueryInformationThread 5
|
|
|
|
NtQueryInformationToken 5
|
|
|
|
NtQueryInstallUILanguage 1
|
|
|
|
NtQueryIntervalProfile 2
|
|
|
|
NtQueryIoCompletion 5
|
|
|
|
NtQueryKey 5
|
|
|
|
NtQueryMultipleValueKey 6
|
|
|
|
NtQueryMutant 5
|
|
|
|
NtQueryObject 5
|
2006-10-23 21:28:17 +00:00
|
|
|
NtQueryOpenSubKeys 2
|
2006-12-03 11:13:05 +00:00
|
|
|
NtQueryOpenSubKeysEx 4
|
2005-01-17 07:10:34 +00:00
|
|
|
NtQueryPerformanceCounter 2
|
|
|
|
NtQueryQuotaInformationFile 9
|
|
|
|
NtQuerySection 5
|
|
|
|
NtQuerySecurityObject 5
|
|
|
|
NtQuerySemaphore 5
|
|
|
|
NtQuerySymbolicLinkObject 3
|
|
|
|
NtQuerySystemEnvironmentValue 4
|
2006-10-23 21:28:17 +00:00
|
|
|
NtQuerySystemEnvironmentValueEx 5
|
2005-01-17 07:10:34 +00:00
|
|
|
NtQuerySystemInformation 4
|
|
|
|
NtQuerySystemTime 1
|
|
|
|
NtQueryTimer 5
|
|
|
|
NtQueryTimerResolution 3
|
|
|
|
NtQueryValueKey 6
|
|
|
|
NtQueryVirtualMemory 6
|
|
|
|
NtQueryVolumeInformationFile 5
|
|
|
|
NtQueueApcThread 5
|
|
|
|
NtRaiseException 3
|
|
|
|
NtRaiseHardError 6
|
|
|
|
NtReadFile 9
|
|
|
|
NtReadFileScatter 9
|
|
|
|
NtReadRequestData 6
|
|
|
|
NtReadVirtualMemory 5
|
|
|
|
NtRegisterThreadTerminatePort 1
|
|
|
|
NtReleaseMutant 2
|
|
|
|
NtReleaseSemaphore 3
|
|
|
|
NtRemoveIoCompletion 5
|
2006-06-28 17:02:37 +00:00
|
|
|
NtRemoveProcessDebug 2
|
2008-01-05 17:29:44 +00:00
|
|
|
NtRenameKey 2
|
2005-01-17 07:10:34 +00:00
|
|
|
NtReplaceKey 3
|
|
|
|
NtReplyPort 2
|
|
|
|
NtReplyWaitReceivePort 4
|
2006-01-05 13:40:05 +00:00
|
|
|
NtReplyWaitReceivePortEx 5
|
2005-01-17 07:10:34 +00:00
|
|
|
NtReplyWaitReplyPort 2
|
2008-01-05 17:29:44 +00:00
|
|
|
NtRequestDeviceWakeup 1
|
2005-01-17 07:10:34 +00:00
|
|
|
NtRequestPort 2
|
|
|
|
NtRequestWaitReplyPort 3
|
2006-10-23 21:28:17 +00:00
|
|
|
NtRequestWakeupLatency 1
|
2005-01-17 07:10:34 +00:00
|
|
|
NtResetEvent 2
|
2006-10-23 21:28:17 +00:00
|
|
|
NtResetWriteWatch 3
|
2005-01-17 07:10:34 +00:00
|
|
|
NtRestoreKey 3
|
2005-04-29 16:41:52 +00:00
|
|
|
NtResumeProcess 1
|
2005-01-17 07:10:34 +00:00
|
|
|
NtResumeThread 2
|
|
|
|
NtSaveKey 2
|
|
|
|
NtSaveKeyEx 3
|
2006-10-23 21:28:17 +00:00
|
|
|
NtSaveMergedKeys 3
|
2005-09-07 19:37:28 +00:00
|
|
|
NtSecureConnectPort 9
|
2005-01-17 07:10:34 +00:00
|
|
|
NtSetBootEntryOrder 2
|
|
|
|
NtSetBootOptions 2
|
|
|
|
NtSetContextThread 2
|
2006-10-23 21:28:17 +00:00
|
|
|
NtSetDebugFilterState 3
|
2005-01-17 07:10:34 +00:00
|
|
|
NtSetDefaultHardErrorPort 1
|
|
|
|
NtSetDefaultLocale 2
|
|
|
|
NtSetDefaultUILanguage 1
|
2006-10-23 21:28:17 +00:00
|
|
|
NtSetDriverEntryOrder 2
|
2005-01-17 07:10:34 +00:00
|
|
|
NtSetEaFile 4
|
|
|
|
NtSetEvent 2
|
2006-10-23 21:28:17 +00:00
|
|
|
NtSetEventBoostPriority 1
|
2005-01-17 07:10:34 +00:00
|
|
|
NtSetHighEventPair 1
|
|
|
|
NtSetHighWaitLowEventPair 1
|
2006-06-28 17:02:37 +00:00
|
|
|
NtSetInformationDebugObject 5
|
2005-01-17 07:10:34 +00:00
|
|
|
NtSetInformationFile 5
|
|
|
|
NtSetInformationJobObject 4
|
2006-10-23 21:28:17 +00:00
|
|
|
NtSetInformationKey 4
|
2005-01-17 07:10:34 +00:00
|
|
|
NtSetInformationObject 4
|
|
|
|
NtSetInformationProcess 4
|
|
|
|
NtSetInformationThread 4
|
|
|
|
NtSetInformationToken 4
|
|
|
|
NtSetIntervalProfile 2
|
2006-10-23 21:28:17 +00:00
|
|
|
NtSetIoCompletion 5
|
2005-01-17 07:10:34 +00:00
|
|
|
NtSetLdtEntries 6
|
|
|
|
NtSetLowEventPair 1
|
|
|
|
NtSetLowWaitHighEventPair 1
|
|
|
|
NtSetQuotaInformationFile 4
|
|
|
|
NtSetSecurityObject 3
|
|
|
|
NtSetSystemEnvironmentValue 2
|
2006-10-23 21:28:17 +00:00
|
|
|
NtSetSystemEnvironmentValueEx 2
|
2005-01-17 07:10:34 +00:00
|
|
|
NtSetSystemInformation 3
|
|
|
|
NtSetSystemPowerState 3
|
|
|
|
NtSetSystemTime 2
|
2006-10-23 21:28:17 +00:00
|
|
|
NtSetThreadExecutionState 2
|
2005-01-17 07:10:34 +00:00
|
|
|
NtSetTimer 7
|
|
|
|
NtSetTimerResolution 3
|
|
|
|
NtSetUuidSeed 1
|
|
|
|
NtSetValueKey 6
|
|
|
|
NtSetVolumeInformationFile 5
|
|
|
|
NtShutdownSystem 1
|
|
|
|
NtSignalAndWaitForSingleObject 4
|
|
|
|
NtStartProfile 1
|
|
|
|
NtStopProfile 1
|
2005-04-29 16:41:52 +00:00
|
|
|
NtSuspendProcess 1
|
2005-01-17 07:10:34 +00:00
|
|
|
NtSuspendThread 2
|
|
|
|
NtSystemDebugControl 6
|
|
|
|
NtTerminateJobObject 2
|
|
|
|
NtTerminateProcess 2
|
|
|
|
NtTerminateThread 2
|
|
|
|
NtTestAlert 0
|
|
|
|
NtTraceEvent 4
|
2006-12-03 11:13:05 +00:00
|
|
|
NtTranslateFilePath 4
|
2005-01-17 07:10:34 +00:00
|
|
|
NtUnloadDriver 1
|
|
|
|
NtUnloadKey 1
|
2006-10-23 21:28:17 +00:00
|
|
|
NtUnloadKey2 2
|
|
|
|
NtUnloadKeyEx 2
|
2005-01-17 07:10:34 +00:00
|
|
|
NtUnlockFile 5
|
|
|
|
NtUnlockVirtualMemory 4
|
|
|
|
NtUnmapViewOfSection 2
|
|
|
|
NtVdmControl 2
|
- More sharing between ntdll/ntoskrnl: shared Dbg code.
- Added NtCreateDebugObject, NtDebugContinue, NtQueryDebugFilterState, NtSetDebugFilterState, NtWaitForDebugEvent to system call list.
- Added some debug constants to headers
- Updated RtlpCheckForActiveDebugger in ntoskrnl to return whatever we're expecting as the "normal" case.
- Added RtlpSetInDbgPrint to rtl support library for special DbgPrint implementation difference in user-mode
- Removed all the deprecated debug APIs in ntdll.
- Implemented NtQueryDebugFilterState and NtSetDebugFilterState based on royce's implementation.
- Started modifications on KeDebugService, and implemented DebugService in rtl
- Implemented all the Dbg* APIs in RTL.
- Implemented DbgUiConnectToDbg, DbgUiContinue, DbgUiWaitStateChange, DbgUiRemoteBreakin, DbgUiIssueRemoteBreakin
- Changed KD Print callbacks to also receive the length of the string.
Right now, one call that should be shared still isn't (the final DebugPrint call) because calling KeDebugService from kernel-mode seems to cause a hang. Also, DebugService does not currently cause an exception like it should (instead it still calls the Kdp handler), because those changes would've made the patch even bigger and are still untested.
svn path=/trunk/; revision=18078
2005-09-26 04:59:48 +00:00
|
|
|
NtWaitForDebugEvent 4
|
2005-01-17 07:10:34 +00:00
|
|
|
NtWaitForMultipleObjects 5
|
|
|
|
NtWaitForSingleObject 3
|
|
|
|
NtWaitHighEventPair 1
|
|
|
|
NtWaitLowEventPair 1
|
|
|
|
NtWriteFile 9
|
|
|
|
NtWriteFileGather 9
|
|
|
|
NtWriteRequestData 6
|
|
|
|
NtWriteVirtualMemory 5
|
|
|
|
NtYieldExecution 0
|
2006-10-23 21:28:17 +00:00
|
|
|
NtCreateKeyedEvent 4
|
|
|
|
NtOpenKeyedEvent 3
|
|
|
|
NtReleaseKeyedEvent 4
|
|
|
|
NtWaitForKeyedEvent 4
|
|
|
|
NtQueryPortInformationProcess 0
|
|
|
|
NtGetCurrentProcessorNumber 0
|
|
|
|
NtWaitForMultipleObjects32 5
|